summaryrefslogtreecommitdiffstats
path: root/settings
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2010-09-06 22:34:29 +0200
committerRobin Appelman <icewind1991@gmail.com>2010-09-06 22:34:29 +0200
commitb0dbb2ac9d5f5899ea6b9cad808413aeac7292d1 (patch)
treed03482da4116ad3ceb54a8bed136573b9c1c2013 /settings
parentec7c069653f572bdf5dd463a79cdaa37abb53534 (diff)
downloadnextcloud-server-b0dbb2ac9d5f5899ea6b9cad808413aeac7292d1.tar.gz
nextcloud-server-b0dbb2ac9d5f5899ea6b9cad808413aeac7292d1.zip
fix wrong settings form being restricted to admin only
Diffstat (limited to 'settings')
-rw-r--r--settings/index.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/index.php b/settings/index.php
index 582e7601e51..b57e75f8d99 100644
--- a/settings/index.php
+++ b/settings/index.php
@@ -30,9 +30,9 @@ OC_UTIL::showheader();
$FIRSTRUN=false;
-OC_CONFIG::addForm('System Settings','/inc/templates/adminform.php');
+OC_CONFIG::addForm('User Settings','/inc/templates/configform.php');
if(OC_USER::ingroup($_SESSION['username'],'admin')){
- OC_CONFIG::addForm('User Settings','/inc/templates/configform.php');
+ OC_CONFIG::addForm('System Settings','/inc/templates/adminform.php');
}
echo('<div class="center">');