diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-11-11 21:01:21 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-11-11 21:01:21 +0000 |
commit | 967564cba0bdc7b75ecd3bd44a2a4ae1c7d82c64 (patch) | |
tree | 91ffba7b7f5b51365e0b20ccb555c41404337c9f /app/views/boards | |
parent | 05690057590a2a8d7fe82a1d5df4412ddf879829 (diff) | |
download | redmine-967564cba0bdc7b75ecd3bd44a2a4ae1c7d82c64.tar.gz redmine-967564cba0bdc7b75ecd3bd44a2a4ae1c7d82c64.zip |
Removed deprecated align and width html attributes (#15307).
git-svn-id: http://svn.redmine.org/redmine/trunk@12268 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/boards')
-rw-r--r-- | app/views/boards/index.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/boards/index.html.erb b/app/views/boards/index.html.erb index f859e822b..640b8a1a3 100644 --- a/app/views/boards/index.html.erb +++ b/app/views/boards/index.html.erb @@ -10,7 +10,7 @@ <tbody> <% Board.board_tree(@boards) do |board, level| %> <tr class="<%= cycle 'odd', 'even' %>"> - <td style="padding-left: <%= level * 18 %>px;"> + <td class="name" style="padding-left: <%= level * 18 %>px;"> <%= link_to h(board.name), project_board_path(board.project, board), :class => "board" %><br /> <%=h board.description %> </td> |