diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-06-10 10:48:34 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-06-10 10:48:34 +0000 |
commit | 4d4f330b0c7430224dcb298824db8830fb1f838c (patch) | |
tree | 7067966de61dcfdcb0cf8f038458fd694fe96c8f /lib/redmine.rb | |
parent | 8a3c24762d91ecaea4d55734173da6b9fa7aa3ea (diff) | |
download | redmine-4d4f330b0c7430224dcb298824db8830fb1f838c.tar.gz redmine-4d4f330b0c7430224dcb298824db8830fb1f838c.zip |
Highlight menu item when viewing an attachment (#25988).
git-svn-id: http://svn.redmine.org/redmine/trunk@16652 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine.rb')
-rw-r--r-- | lib/redmine.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/redmine.rb b/lib/redmine.rb index 729fcb561..d9f57ddc5 100644 --- a/lib/redmine.rb +++ b/lib/redmine.rb @@ -272,6 +272,7 @@ Redmine::MenuManager.map :project_menu do |menu| :parent => :new_object menu.push :new_file, {:controller => 'files', :action => 'new'}, :param => :project_id, :caption => :label_attachment_new, :parent => :new_object + menu.push :overview, { :controller => 'projects', :action => 'show' } menu.push :activity, { :controller => 'activities', :action => 'index' } menu.push :roadmap, { :controller => 'versions', :action => 'index' }, :param => :project_id, |