aboutsummaryrefslogtreecommitdiffstats
path: root/settings/settings.php
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2012-09-04 12:17:02 +0300
committerThomas Müller <thomas.mueller@tmit.eu>2012-09-04 12:17:02 +0300
commit01f5aa1b2db1c1cb3e009211212541fe61cde7a3 (patch)
tree21cf48a9a6365d058afe1af6275671c4439cb036 /settings/settings.php
parentdc2648b14cfffcb3da944bfca6a81d42217d790e (diff)
downloadnextcloud-server-01f5aa1b2db1c1cb3e009211212541fe61cde7a3.tar.gz
nextcloud-server-01f5aa1b2db1c1cb3e009211212541fe61cde7a3.zip
Update settings/settings.php
respect coding style
Diffstat (limited to 'settings/settings.php')
-rw-r--r--settings/settings.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/settings/settings.php b/settings/settings.php
index a49de85520b..ae41fecaf9f 100644
--- a/settings/settings.php
+++ b/settings/settings.php
@@ -5,7 +5,7 @@
* See the COPYING-README file.
*/
-require_once('../lib/base.php');
+require_once '../lib/base.php';
OC_Util::checkLoggedIn();
OC_Util::addStyle( 'settings', 'settings' );
@@ -13,8 +13,8 @@ OC_App::setActiveNavigationEntry( 'settings' );
$tmpl = new OC_Template( 'settings', 'settings', 'user');
$forms=OC_App::getForms('settings');
-$tmpl->assign('forms',array());
+$tmpl->assign('forms', array());
foreach($forms as $form){
- $tmpl->append('forms',$form);
+ $tmpl->append('forms', $form);
}
$tmpl->printPage();