diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-01-20 20:02:04 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-01-20 20:02:04 +0000 |
commit | 80f3834159d859cfd31e43c9610aee34dc3aa4bd (patch) | |
tree | 55d97b7c9d4d895bad80c7866f155a412ab34e1c /app/controllers/admin_controller.rb | |
parent | 83e45cad9f6a566147fdb4d05d1d6a0a7bfad98e (diff) | |
download | redmine-80f3834159d859cfd31e43c9610aee34dc3aa4bd.tar.gz redmine-80f3834159d859cfd31e43c9610aee34dc3aa4bd.zip |
Fixes admin menu display.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8679 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers/admin_controller.rb')
-rw-r--r-- | app/controllers/admin_controller.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/controllers/admin_controller.rb b/app/controllers/admin_controller.rb index d32bdef91..5aecd5f6d 100644 --- a/app/controllers/admin_controller.rb +++ b/app/controllers/admin_controller.rb @@ -17,6 +17,10 @@ class AdminController < ApplicationController layout 'admin' + menu_item :projects, :only => :projects + menu_item :plugins, :only => :plugins + menu_item :info, :only => :info + before_filter :require_admin helper :sort include SortHelper |