diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-12-02 03:03:48 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-12-02 03:03:48 +0100 |
commit | 72b6faa69d693fa0d2a21d592b6ae36023757872 (patch) | |
tree | 9e6c31b6edc5715c34849c737f6f32ff6dcedf8a /apps/files/appinfo/app.php | |
parent | 702444b2422326388e494091e815fd3d9b03cc87 (diff) | |
parent | 401c56ce7bda6b8fb782e3cea962e47546626eef (diff) | |
download | nextcloud-server-72b6faa69d693fa0d2a21d592b6ae36023757872.tar.gz nextcloud-server-72b6faa69d693fa0d2a21d592b6ae36023757872.zip |
merge master into filesystem
Diffstat (limited to 'apps/files/appinfo/app.php')
-rw-r--r-- | apps/files/appinfo/app.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/files/appinfo/app.php b/apps/files/appinfo/app.php index fb64a80ec0d..643d8ed18a2 100644 --- a/apps/files/appinfo/app.php +++ b/apps/files/appinfo/app.php @@ -3,7 +3,11 @@ $l = OC_L10N::get('files'); OCP\App::registerAdmin('files', 'admin'); -OCP\App::addNavigationEntry(array("id" => "files_index", "order" => 0, "href" => OCP\Util::linkTo("files", "index.php"), "icon" => OCP\Util::imagePath("core", "places/home.svg"), "name" => $l->t("Files"))); +OCP\App::addNavigationEntry( array( "id" => "files_index", + "order" => 0, + "href" => OCP\Util::linkTo( "files", "index.php" ), + "icon" => OCP\Util::imagePath( "core", "places/home.svg" ), + "name" => $l->t("Files") )); OC_Search::registerProvider('OC_Search_Provider_File'); |