Update settings/settings.php
respect coding style
This commit is contained in:
parent
dc2648b14c
commit
01f5aa1b2d
1 changed files with 3 additions and 3 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue