Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-07-13 10:57:54 +0300
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-07-13 10:57:54 +0300
commite1a2bb9d69bf1aeba6362672c6b161bb96ad8a48 (patch)
tree3184d27752e692b96e70e957b6b58cba495892ed /apps/files/appinfo
parent6f45607f57c55550808824ffdeebbf10353a2554 (diff)
Fix fav quickaccess ressource addition
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files/appinfo')
-rw-r--r--apps/files/appinfo/app.php26
1 files changed, 13 insertions, 13 deletions
diff --git a/apps/files/appinfo/app.php b/apps/files/appinfo/app.php
index a7ce4e18306..dfff7f6f464 100644
--- a/apps/files/appinfo/app.php
+++ b/apps/files/appinfo/app.php
@@ -40,27 +40,27 @@ $templateManager->registerTemplate('application/vnd.oasis.opendocument.text', 'c
$templateManager->registerTemplate('application/vnd.oasis.opendocument.spreadsheet', 'core/templates/filetemplates/template.ods');
\OCA\Files\App::getNavigationManager()->add([
- 'id' => 'files',
+ 'id' => 'files',
'appname' => 'files',
- 'script' => 'list.php',
- 'order' => 0,
- 'name' => $l->t('All files'),
+ 'script' => 'list.php',
+ 'order' => 0,
+ 'name' => $l->t('All files')
]);
\OCA\Files\App::getNavigationManager()->add([
- 'id' => 'recent',
+ 'id' => 'recent',
'appname' => 'files',
- 'script' => 'recentlist.php',
- 'order' => 2,
- 'name' => $l->t('Recent'),
+ 'script' => 'recentlist.php',
+ 'order' => 2,
+ 'name' => $l->t('Recent')
]);
\OCA\Files\App::getNavigationManager()->add([
- 'id' => 'favorites',
- 'appname' => 'files',
- 'script' => 'simplelist.php',
- 'order' => 5,
- 'name' => $l->t('Favorites'),
+ 'id' => 'favorites',
+ 'appname' => 'files',
+ 'script' => 'simplelist.php',
+ 'order' => 5,
+ 'name' => $l->t('Favorites'),
'expandedState' => 'show_Quick_Access'
]);