Reverts r10676 that broke a test.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10677 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2012-10-18 18:11:42 +00:00
parent e7dfc30c2f
commit 79c1ec7adc
1 changed files with 2 additions and 1 deletions

View File

@ -142,7 +142,8 @@ module ApplicationHelper
if project.archived?
h(project)
else
link_to project.name, project_path(project, options), html_options
url = {:controller => 'projects', :action => 'show', :id => project}.merge(options)
link_to(h(project), url, html_options)
end
end