diff options
author | Tom Needham <needham.thomas@gmail.com> | 2012-04-15 13:41:22 +0000 |
---|---|---|
committer | Tom Needham <needham.thomas@gmail.com> | 2012-04-15 13:41:22 +0000 |
commit | cdf9f8c42a6adbd57781c92caabfed5ff86f4021 (patch) | |
tree | d9d9d0de16c70c9cab156723bf49eca8c6bc9981 /files | |
parent | b3bd4bc384986dcc57e1329ba24aa8ee587015ff (diff) | |
download | nextcloud-server-cdf9f8c42a6adbd57781c92caabfed5ff86f4021.tar.gz nextcloud-server-cdf9f8c42a6adbd57781c92caabfed5ff86f4021.zip |
Force Files app to top of app menu
Diffstat (limited to 'files')
-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 1b495e52f40..c4a2ee7407a 100644 --- a/files/appinfo/app.php +++ b/files/appinfo/app.php @@ -5,6 +5,6 @@ $l=OC_L10N::get('files'); 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( "core", "places/home.svg" ), "name" => $l->t("Files") )); +OC_App::addNavigationEntry( array( "id" => "files_index", "order" => 0, "href" => OC_Helper::linkTo( "files", "index.php" ), "icon" => OC_Helper::imagePath( "core", "places/home.svg" ), "name" => $l->t("Files") )); OC_Search::registerProvider('OC_Search_Provider_File'); |