mirror of
https://github.com/nextcloud/server.git
synced 2026-06-06 23:34:22 -04:00
Merge pull request #5642 from owncloud/fixing-5271-master
we should check if a user is logged in before we check for admin privil...
This commit is contained in:
commit
8f50d7680b
1 changed files with 2 additions and 0 deletions
|
|
@ -579,6 +579,7 @@ class OC_Util {
|
|||
* @return void
|
||||
*/
|
||||
public static function checkAdminUser() {
|
||||
OC_Util::checkLoggedIn();
|
||||
if( !OC_User::isAdminUser(OC_User::getUser())) {
|
||||
header( 'Location: '.OC_Helper::linkToAbsolute( '', 'index.php' ));
|
||||
exit();
|
||||
|
|
@ -611,6 +612,7 @@ class OC_Util {
|
|||
* @return array $groups where the current user is subadmin
|
||||
*/
|
||||
public static function checkSubAdminUser() {
|
||||
OC_Util::checkLoggedIn();
|
||||
if(!OC_SubAdmin::isSubAdmin(OC_User::getUser())) {
|
||||
header( 'Location: '.OC_Helper::linkToAbsolute( '', 'index.php' ));
|
||||
exit();
|
||||
|
|
|
|||
Loading…
Reference in a new issue