diff options
Diffstat (limited to 'settings/index.php')
-rw-r--r-- | settings/index.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/settings/index.php b/settings/index.php index d5e7451d08b..582e7601e51 100644 --- a/settings/index.php +++ b/settings/index.php @@ -30,8 +30,13 @@ OC_UTIL::showheader(); $FIRSTRUN=false; +OC_CONFIG::addForm('System Settings','/inc/templates/adminform.php'); +if(OC_USER::ingroup($_SESSION['username'],'admin')){ + OC_CONFIG::addForm('User Settings','/inc/templates/configform.php'); +} + echo('<div class="center">'); -OC_CONFIG::showconfigform(); +OC_CONFIG::showSettings(); echo('</div>'); |