summaryrefslogtreecommitdiffstats
path: root/settings
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2015-02-16 17:37:36 +0100
committerMorris Jobke <hey@morrisjobke.de>2015-02-16 17:37:36 +0100
commit5a5d6bf4db0686c1e7b4ebeed0205547081a5d4c (patch)
treed760e85d7dade0d7ae93fd4d8b052e067a841fb9 /settings
parentfadf0a944345272cb2303283dafd4fa70ff688b0 (diff)
parent7e45f5d27ba5168a4601f60d70b0eeab40245dc3 (diff)
downloadnextcloud-server-5a5d6bf4db0686c1e7b4ebeed0205547081a5d4c.tar.gz
nextcloud-server-5a5d6bf4db0686c1e7b4ebeed0205547081a5d4c.zip
Merge pull request #14128 from owncloud/drop-unused-methods
Remove unused function and correct PHPDoc
Diffstat (limited to 'settings')
-rw-r--r--settings/routes.php2
-rw-r--r--settings/settings.php19
2 files changed, 0 insertions, 21 deletions
diff --git a/settings/routes.php b/settings/routes.php
index 150746665d3..942d9b0fb28 100644
--- a/settings/routes.php
+++ b/settings/routes.php
@@ -37,8 +37,6 @@ $this->create('settings_help', '/settings/help')
->actionInclude('settings/help.php');
$this->create('settings_personal', '/settings/personal')
->actionInclude('settings/personal.php');
-$this->create('settings_settings', '/settings')
- ->actionInclude('settings/settings.php');
$this->create('settings_users', '/settings/users')
->actionInclude('settings/users.php');
$this->create('settings_apps', '/settings/apps')
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();