diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-03-21 21:08:00 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-03-21 21:08:00 +0000 |
commit | 180fe8f6a47e85357bda2e6b22832c0635d209e4 (patch) | |
tree | d3eddac70e3379038e49d92dd6f99b866ea54c87 /app/views/issues/index.rhtml | |
parent | 60c12ca3ab7508a5b8ea3d367d1cd697d2e2c481 (diff) | |
download | redmine-180fe8f6a47e85357bda2e6b22832c0635d209e4.tar.gz redmine-180fe8f6a47e85357bda2e6b22832c0635d209e4.zip |
Fix IE6 display bug on the issue list.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1285 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/issues/index.rhtml')
-rw-r--r-- | app/views/issues/index.rhtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/issues/index.rhtml b/app/views/issues/index.rhtml index d212ab6bb..094c49ff2 100644 --- a/app/views/issues/index.rhtml +++ b/app/views/issues/index.rhtml @@ -6,7 +6,7 @@ <%= hidden_field_tag('project_id', @project.id) if @project %> <fieldset id="filters"><legend><%= l(:label_filter_plural) %></legend> <%= render :partial => 'queries/filters', :locals => {:query => @query} %> - <div class="buttons"> + <p class="buttons"> <%= link_to_remote l(:button_apply), { :url => { :set_filter => 1 }, :update => "content", @@ -21,7 +21,7 @@ <% if current_role && current_role.allowed_to?(:save_queries) %> <%= link_to l(:button_save), {}, :onclick => "$('query_form').submit(); return false;", :class => 'icon icon-save' %> <% end %> - </div> + </p> </fieldset> <% end %> <% else %> |