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/issue_statuses | |
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/issue_statuses')
-rw-r--r-- | app/views/issue_statuses/index.html.erb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/views/issue_statuses/index.html.erb b/app/views/issue_statuses/index.html.erb index 61d0c616b..659dd18fa 100644 --- a/app/views/issue_statuses/index.html.erb +++ b/app/views/issue_statuses/index.html.erb @@ -19,12 +19,12 @@ <tbody> <% for status in @issue_statuses %> <tr class="<%= cycle("odd", "even") %>"> - <td><%= link_to h(status.name), edit_issue_status_path(status) %></td> + <td class="name"><%= link_to h(status.name), edit_issue_status_path(status) %></td> <% if Issue.use_status_for_done_ratio? %> - <td align="center"><%= h status.default_done_ratio %></td> + <td><%= h status.default_done_ratio %></td> <% end %> - <td align="center"><%= checked_image status.is_default? %></td> - <td align="center"><%= checked_image status.is_closed? %></td> + <td><%= checked_image status.is_default? %></td> + <td><%= checked_image status.is_closed? %></td> <td class="reorder"><%= reorder_links('issue_status', {:action => 'update', :id => status}, :put) %></td> <td class="buttons"> <%= delete_link issue_status_path(status) %> |