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/groups | |
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/groups')
-rw-r--r-- | app/views/groups/index.html.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/groups/index.html.erb b/app/views/groups/index.html.erb index 2ce91dc58..d48afe9f0 100644 --- a/app/views/groups/index.html.erb +++ b/app/views/groups/index.html.erb @@ -14,8 +14,8 @@ <tbody> <% @groups.each do |group| %> <tr class="<%= cycle 'odd', 'even' %>"> - <td><%= link_to h(group), edit_group_path(group) %></td> - <td align="center"><%= group.users.size %></td> + <td class="name"><%= link_to h(group), edit_group_path(group) %></td> + <td><%= group.users.size %></td> <td class="buttons"><%= delete_link group %></td> </tr> <% end %> |