]> source.dussan.org Git - nextcloud-server.git/commitdiff
Remove useless check
authorJoas Schilling <coding@schilljs.com>
Thu, 28 Jul 2016 13:45:44 +0000 (15:45 +0200)
committerJoas Schilling <coding@schilljs.com>
Wed, 3 Aug 2016 07:14:34 +0000 (09:14 +0200)
apps/theming/settings/settings-admin.php

index d9aa05cfca0643696d7f6464a9af1c545f325fed..8ef499789e8999816bcf256ae5de8b935a1a864e 100644 (file)
@@ -23,8 +23,6 @@
  *
  */
 
-\OC_Util::checkAdminUser();
-
 $config = \OC::$server->getConfig();
 $l = \OC::$server->getL10N('theming');
 $urlGenerator = \OC::$server->getURLGenerator();
@@ -40,7 +38,7 @@ if ($theme !== '') {
        $errorMessage = $l->t('You already use a custom theme');
 }
 
-$template = new OCP\Template('theming', 'settings-admin');
+$template = new \OCP\Template('theming', 'settings-admin');
 
 $template->assign('themable', $themable);
 $template->assign('errorMessage', $errorMessage);