diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-04-21 18:06:01 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-04-21 18:06:01 +0000 |
commit | 3d685f7bec6d4646a8ef87b01c93c8ecc4216be9 (patch) | |
tree | c8cabc1cb16daedabc778b23e8414c78caa4938c | |
parent | 05b08ae38fd81b7691b9d5e7dac85da983c10a58 (diff) | |
download | redmine-3d685f7bec6d4646a8ef87b01c93c8ecc4216be9.tar.gz redmine-3d685f7bec6d4646a8ef87b01c93c8ecc4216be9.zip |
Fixed: blank lines in left menu with IE
git-svn-id: http://redmine.rubyforge.org/svn/trunk@462 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/layouts/base.rhtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/layouts/base.rhtml b/app/views/layouts/base.rhtml index 1e81dabd2..1929e386a 100644 --- a/app/views/layouts/base.rhtml +++ b/app/views/layouts/base.rhtml @@ -98,10 +98,10 @@ <li><%= link_to l(:label_change_log), :controller => 'projects', :action => 'changelog', :id => @project %></li> <li><%= link_to l(:label_roadmap), :controller => 'projects', :action => 'roadmap', :id => @project %></li> <li><%= link_to l(:label_document_plural), :controller => 'projects', :action => 'list_documents', :id => @project %></li> - <li><%= link_to l(:label_wiki), :controller => 'wiki', :id => @project, :page => nil if @project.wiki and !@project.wiki.new_record? %></li> + <%= content_tag("li", link_to(l(:label_wiki), :controller => 'wiki', :id => @project, :page => nil)) if @project.wiki and !@project.wiki.new_record? %> <li><%= link_to l(:label_attachment_plural), :controller => 'projects', :action => 'list_files', :id => @project %></li> <li><%= link_to l(:label_search), :controller => 'projects', :action => 'search', :id => @project %></li> - <li><%= link_to l(:label_repository), :controller => 'repositories', :action => 'show', :id => @project if @project.repository and !@project.repository.new_record? %></li> + <%= content_tag("li", link_to(l(:label_repository), :controller => 'repositories', :action => 'show', :id => @project)) if @project.repository and !@project.repository.new_record? %> <li><%= link_to_if_authorized l(:label_settings), :controller => 'projects', :action => 'settings', :id => @project %></li> </ul> <% end %> |