From 12c0f5f66e21bbfdeed82f00eabe7b47ed99d85f Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sat, 2 Feb 2008 11:08:04 +0000 Subject: [PATCH] Do not show Roadmap menu item if the project doesn't define any versions. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1107 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- lib/redmine.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/redmine.rb b/lib/redmine.rb index 1aee1767c..92a1cef14 100644 --- a/lib/redmine.rb +++ b/lib/redmine.rb @@ -93,7 +93,8 @@ end Redmine::MenuManager.map :project_menu do |menu| menu.push :overview, { :controller => 'projects', :action => 'show' }, :caption => :label_overview menu.push :activity, { :controller => 'projects', :action => 'activity' }, :caption => :label_activity - menu.push :roadmap, { :controller => 'projects', :action => 'roadmap' }, :caption => :label_roadmap + menu.push :roadmap, { :controller => 'projects', :action => 'roadmap' }, + :if => Proc.new { |p| p.versions.any? }, :caption => :label_roadmap menu.push :issues, { :controller => 'issues', :action => 'index' }, :param => :project_id, :caption => :label_issue_plural menu.push :new_issue, { :controller => 'issues', :action => 'new' }, :param => :project_id, :caption => :label_issue_new, :html => { :accesskey => Redmine::AccessKeys.key_for(:new_issue) }