diff options
author | Jakob Sack <kde@jakobsack.de> | 2011-04-16 17:49:57 +0200 |
---|---|---|
committer | Jakob Sack <kde@jakobsack.de> | 2011-04-16 17:49:57 +0200 |
commit | af1e48df80680dfa2b6e1367752a41aee750c308 (patch) | |
tree | 6207783e6124c9fb795f2eb12b3d67886c239731 /files/appinfo | |
parent | b5f913a3fc66a3036fc7ea291d67a72f7a0ecd40 (diff) | |
download | nextcloud-server-af1e48df80680dfa2b6e1367752a41aee750c308.tar.gz nextcloud-server-af1e48df80680dfa2b6e1367752a41aee750c308.zip |
Changes in the user experience
Diffstat (limited to 'files/appinfo')
-rw-r--r-- | files/appinfo/app.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/appinfo/app.php b/files/appinfo/app.php index a3532e805d2..eff45cbe6e3 100644 --- a/files/appinfo/app.php +++ b/files/appinfo/app.php @@ -3,6 +3,6 @@ OC_APP::register( array( "order" => 2, "id" => "files", "name" => "Files" )); OC_APP::addNavigationEntry( array( "id" => "files_index", "order" => 1, "href" => OC_HELPER::linkTo( "files", "index.php" ), "icon" => OC_HELPER::imagePath( "files", "navicon.png" ), "name" => "Files" )); -OC_APP::addAdminPage( array( "order" => 1, "href" => OC_HELPER::linkTo( "files", "admin.php" ), "name" => "Files" )); +OC_APP::addSettingsPage( array( "order" => 1, "href" => OC_HELPER::linkTo( "files", "admin.php" ), "name" => "Files" )); ?> |