diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-02-12 00:11:38 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-02-16 13:46:45 +0100 |
commit | 7e45f5d27ba5168a4601f60d70b0eeab40245dc3 (patch) | |
tree | 44f1182bb89dd0aeec6883bfcced0aae7788b9c8 /settings/settings.php | |
parent | 78febb2ee594bac5d483f7c8534ed5eb33c2c528 (diff) | |
download | nextcloud-server-7e45f5d27ba5168a4601f60d70b0eeab40245dc3.tar.gz nextcloud-server-7e45f5d27ba5168a4601f60d70b0eeab40245dc3.zip |
Remove unused function and correct PHPDoc
Diffstat (limited to 'settings/settings.php')
-rw-r--r-- | settings/settings.php | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/settings/settings.php b/settings/settings.php deleted file mode 100644 index c08732fcf66..00000000000 --- a/settings/settings.php +++ /dev/null @@ -1,19 +0,0 @@ -<?php -/** - * Copyright (c) 2011, Robin Appelman <icewind1991@gmail.com> - * This file is licensed under the Affero General Public License version 3 or later. - * See the COPYING-README file. - */ - -OC_Util::checkLoggedIn(); - -OC_Util::addStyle( 'settings', 'settings' ); -OC_App::setActiveNavigationEntry( 'settings' ); - -$tmpl = new OC_Template( 'settings', 'settings', 'user'); -$forms=OC_App::getForms('settings'); -$tmpl->assign('forms', array()); -foreach($forms as $form) { - $tmpl->append('forms', $form); -} -$tmpl->printPage(); |