diff options
author | Frank Karlitschek <karlitschek@kde.org> | 2011-08-11 16:24:53 +0200 |
---|---|---|
committer | Frank Karlitschek <karlitschek@kde.org> | 2011-08-11 16:24:53 +0200 |
commit | 5b9f6b4001b2b92b77a078b521c475ee4a352b03 (patch) | |
tree | 8b0d642af2bcaa5dee82662117784e311f7d8a6b /lib/app.php | |
parent | c824572b91ce8b85704b0dab11bba248e87610bc (diff) | |
download | nextcloud-server-5b9f6b4001b2b92b77a078b521c475ee4a352b03.tar.gz nextcloud-server-5b9f6b4001b2b92b77a078b521c475ee4a352b03.zip |
hide the files admin page as long as we don have settings on the page
Diffstat (limited to 'lib/app.php')
-rw-r--r-- | lib/app.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/app.php b/lib/app.php index 6a2e3078596..b3a3779556e 100644 --- a/lib/app.php +++ b/lib/app.php @@ -202,7 +202,7 @@ class OC_App{ $admin=array( array( "id" => "core_users", "order" => 2, "href" => OC_Helper::linkTo( "admin", "users.php" ), "name" => $l->t("Users"), "icon" => OC_Helper::imagePath( "admin", "users.png" )), array( "id" => "core_apps", "order" => 3, "href" => OC_Helper::linkTo( "admin", "apps.php?installed" ), "name" => $l->t("Apps"), "icon" => OC_Helper::imagePath( "admin", "apps.png" )), - array( "id" => "files_administration", "order" => 3, "href" => OC_Helper::linkTo( "files", "admin.php" ), "name" => $l->t("Files"), "icon" => OC_Helper::imagePath( "files", "folder.png" )), +// array( "id" => "files_administration", "order" => 3, "href" => OC_Helper::linkTo( "files", "admin.php" ), "name" => $l->t("Files"), "icon" => OC_Helper::imagePath( "files", "folder.png" )), ); $settings=array( array( "id" => "help", "order" => 1000, "href" => OC_Helper::linkTo( "help", "index.php" ), "name" => $l->t("Help"), "icon" => OC_Helper::imagePath( "help", "help.png" )), |