diff options
author | Eric Davis <edavis@littlestreamsoftware.com> | 2010-09-17 04:22:46 +0000 |
---|---|---|
committer | Eric Davis <edavis@littlestreamsoftware.com> | 2010-09-17 04:22:46 +0000 |
commit | b8ea55661631be2e7aa535fee7dc43fd3c4ca75d (patch) | |
tree | b9f7bdfc883bcd0200247b3ed7cb87e547df5631 /app/views/projects | |
parent | ebb445c36468529cc7873136469a6162660ad253 (diff) | |
download | redmine-b8ea55661631be2e7aa535fee7dc43fd3c4ca75d.tar.gz redmine-b8ea55661631be2e7aa535fee7dc43fd3c4ca75d.zip |
Fix the new subproject link on project overview. #6388
Contributed by Felix Schäfer.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4095 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/projects')
-rw-r--r-- | app/views/projects/show.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/show.rhtml b/app/views/projects/show.rhtml index 0ad9a11da..cf3814b77 100644 --- a/app/views/projects/show.rhtml +++ b/app/views/projects/show.rhtml @@ -1,6 +1,6 @@ <div class="contextual"> <% if User.current.allowed_to?(:add_subprojects, @project) %> - <%= link_to l(:label_subproject_new), {:controller => 'projects', :action => 'add', :parent_id => @project}, :class => 'icon icon-add' %> + <%= link_to l(:label_subproject_new), {:controller => 'projects', :action => 'new', :parent_id => @project}, :class => 'icon icon-add' %> <% end %> </div> |