diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb index 78e329857..865987767 100644 --- a/app/controllers/users_controller.rb +++ b/app/controllers/users_controller.rb @@ -15,7 +15,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. class UsersController < ApplicationController - layout 'base_users' + layout :setting_layout #Added by young menu_item :activity menu_item :user_information, :only => :info @@ -694,5 +694,9 @@ class UsersController < ApplicationController end rescue ActiveRecord::RecordNotFound render_404 - end + end + + def setting_layout(default_base='base_users') + User.current.admin? ? 'base_admin' : default_base + end end