diff options
author | Go MAEDA <maeda@farend.jp> | 2021-03-06 06:43:34 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2021-03-06 06:43:34 +0000 |
commit | 8fcef23fef33031cc721f9c0052710e11f316a03 (patch) | |
tree | fe48bad2915e6264eb9bafa9840b4e3c3da5ae97 /lib/redmine.rb | |
parent | 5d251f28d0f634fd4f3134a92eb7a6aa93925d94 (diff) | |
download | redmine-8fcef23fef33031cc721f9c0052710e11f316a03.tar.gz redmine-8fcef23fef33031cc721f9c0052710e11f316a03.zip |
Activity tab in cross-project menu is sometimes broken (#34032).
Patch by Felix Schäfer.
git-svn-id: http://svn.redmine.org/redmine/trunk@20762 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine.rb')
-rw-r--r-- | lib/redmine.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/redmine.rb b/lib/redmine.rb index 2d4dd0f7d..142b60888 100644 --- a/lib/redmine.rb +++ b/lib/redmine.rb @@ -225,7 +225,7 @@ Redmine::MenuManager.map :application_menu do |menu| menu.push :projects, {:controller => 'projects', :action => 'index'}, :permission => nil, :caption => :label_project_plural - menu.push :activity, {:controller => 'activities', :action => 'index'} + menu.push :activity, {:controller => 'activities', :action => 'index', :id => nil} menu.push( :issues, {:controller => 'issues', :action => 'index'}, |