diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2012-11-29 18:30:02 +0100 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2012-11-29 18:33:15 +0100 |
commit | 3b83fe153062508d4a4d70958ad1a5281eaab81e (patch) | |
tree | 30f12d25c179e9c40425c6a37686412ff1854c05 /apps/files/appinfo/app.php | |
parent | c38a75e03f9db02b82e71472d2f719079eb44829 (diff) | |
download | nextcloud-server-3b83fe153062508d4a4d70958ad1a5281eaab81e.tar.gz nextcloud-server-3b83fe153062508d4a4d70958ad1a5281eaab81e.zip |
fix checkstyle for files app
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 b431ddfec02..108f02930e2 100644 --- a/apps/files/appinfo/app.php +++ b/apps/files/appinfo/app.php @@ -3,6 +3,10 @@ $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'); |