Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2012-09-29 01:15:19 +0400
committerBart Visscher <bartv@thisnet.nl>2012-09-29 01:20:17 +0400
commitd0bd2bbf2728cdf472044d76aea97f0d4809774a (patch)
tree508179301cdf66fb9cb3b101047cd8d5888a1e65 /settings/users.php
parentdbdf3bde7ccf721cfc1efa4d13262bd6f444de73 (diff)
Convert menu entries of settings pages to use router
Diffstat (limited to 'settings/users.php')
-rw-r--r--settings/users.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/users.php b/settings/users.php
index e76505cc78d..6eaae474538 100644
--- a/settings/users.php
+++ b/settings/users.php
@@ -5,8 +5,8 @@
* See the COPYING-README file.
*/
-require_once '../lib/base.php';
OC_Util::checkSubAdminUser();
+OC_App::loadApps();
// We have some javascript foo!
OC_Util::addScript( 'settings', 'users' );
@@ -57,4 +57,4 @@ $tmpl->assign( 'subadmins', $subadmins);
$tmpl->assign( 'numofgroups', count($accessiblegroups));
$tmpl->assign( 'quota_preset', $quotaPreset);
$tmpl->assign( 'default_quota', $defaultQuota);
-$tmpl->printPage(); \ No newline at end of file
+$tmpl->printPage();