diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-07-28 21:05:49 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-07-28 21:05:49 +0200 |
commit | 5728f801161ae0ee25113581157a26b1b63cd9ff (patch) | |
tree | 5d9039fe1b07a7f0b6e8a09757d1df25c4f81e68 /admin | |
parent | bc51425bb753d7a5adffe707053b6186a4de7bba (diff) | |
download | nextcloud-server-5728f801161ae0ee25113581157a26b1b63cd9ff.tar.gz nextcloud-server-5728f801161ae0ee25113581157a26b1b63cd9ff.zip |
remove dummy settings
Diffstat (limited to 'admin')
-rw-r--r-- | admin/appinfo/app.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/appinfo/app.php b/admin/appinfo/app.php index b78d698e50c..7ce784cfb98 100644 --- a/admin/appinfo/app.php +++ b/admin/appinfo/app.php @@ -2,7 +2,7 @@ OC_APP::register( array( "order" => 1, "id" => "admin", "name" => "Administration" )); -OC_APP::addAdminPage( array( "id" => "core_system", "order" => 1, "href" => OC_HELPER::linkTo( "admin", "system.php" ), "name" =>"System", "icon" => OC_HELPER::imagePath( "admin", "administration.png" ))); +// OC_APP::addAdminPage( array( "id" => "core_system", "order" => 1, "href" => OC_HELPER::linkTo( "admin", "system.php" ), "name" =>"System", "icon" => OC_HELPER::imagePath( "admin", "administration.png" ))); OC_APP::addAdminPage( array( "id" => "core_users", "order" => 2, "href" => OC_HELPER::linkTo( "admin", "users.php" ), "name" => "Users", "icon" => OC_HELPER::imagePath( "admin", "users.png" ))); OC_APP::addAdminPage( array( "id" => "core_apps", "order" => 3, "href" => OC_HELPER::linkTo( "admin", "apps.php?installed" ), "name" => "Apps", "icon" => OC_HELPER::imagePath( "admin", "apps.png" ))); |