Description:
fixed admin authorization bug in single user mode
Commit status:
[Not Reviewed]
References:
Comments:
0 Commit comments 0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
Add another comment

r284:e64cd998f824 - - 1 file changed: 1 inserted, 1 deleted

@@ -33,7 +33,7
33 # check if run in single user mode
33 # check if run in single user mode
34 if (Configuration[SINGLE_USER_MODE_CONF_KEY])
34 if (Configuration[SINGLE_USER_MODE_CONF_KEY])
35 user = User.find(session[:user_id])
35 user = User.find(session[:user_id])
36 - if user==nil or user.login != 'root'
36 + if user==nil or (not user.admin?)
37 redirect_to :controller => 'main', :action => 'login'
37 redirect_to :controller => 'main', :action => 'login'
38 return false
38 return false
39 end
39 end
You need to be logged in to leave comments. Login now