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/queries | |
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/queries')
-rw-r--r-- | app/views/queries/index.html.erb | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/app/views/queries/index.html.erb b/app/views/queries/index.html.erb index 41051758e..98b0dfb72 100644 --- a/app/views/queries/index.html.erb +++ b/app/views/queries/index.html.erb @@ -10,15 +10,13 @@ <table class="list"> <% @queries.each do |query| %> <tr class="<%= cycle('odd', 'even') %>"> - <td> + <td class="name"> <%= link_to h(query.name), :controller => 'issues', :action => 'index', :project_id => @project, :query_id => query %> </td> - <td align="right"> - <small> + <td class="buttons"> <% if query.editable_by?(User.current) %> <%= link_to l(:button_edit), edit_query_path(query), :class => 'icon icon-edit' %> <%= delete_link query_path(query) %> - </small> <% end %> </td> </tr> |