diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2012-10-28 16:05:31 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2012-10-28 16:05:31 +0100 |
commit | 7af8c6c3cbf00444b81a6d3d0c4cede983ff8edc (patch) | |
tree | 7e114ae3b43017a4f765fef7f793aca67b657263 /apps/files/appinfo/app.php | |
parent | f2f2b8ba3b315365591784dcc1c172625768f241 (diff) | |
download | nextcloud-server-7af8c6c3cbf00444b81a6d3d0c4cede983ff8edc.tar.gz nextcloud-server-7af8c6c3cbf00444b81a6d3d0c4cede983ff8edc.zip |
first version of breadcrumb 'root', still have a weird feeling about this
Diffstat (limited to 'apps/files/appinfo/app.php')
-rw-r--r-- | apps/files/appinfo/app.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/appinfo/app.php b/apps/files/appinfo/app.php index b431ddfec02..3f437679e05 100644 --- a/apps/files/appinfo/app.php +++ b/apps/files/appinfo/app.php @@ -3,6 +3,6 @@ $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/files.svg" ), "name" => $l->t("Files") )); OC_Search::registerProvider('OC_Search_Provider_File'); |