diff options
Diffstat (limited to 'files/admin.php')
-rw-r--r-- | files/admin.php | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/files/admin.php b/files/admin.php index db47bc7c033..09237dfc1d5 100644 --- a/files/admin.php +++ b/files/admin.php @@ -25,12 +25,7 @@ // Init owncloud require_once('../lib/base.php'); - -// Check if we are a user -if( !OC_User::isLoggedIn() || !OC_Group::inGroup( OC_User::getUser(), 'admin' )){ - header( "Location: ".OC_Helper::linkTo( "files", "index.php" )); - exit(); -} +OC_User::checkAdminUser(); $htaccessWorking=(getenv('htaccessWorking')=='true'); if(isset($_POST['maxUploadSize'])){ |