summaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin/index.php
diff options
context:
space:
mode:
authorBjörn Schießle <schiessle@owncloud.com>2013-03-07 13:48:02 +0100
committerBjörn Schießle <schiessle@owncloud.com>2013-03-07 13:48:02 +0100
commit718830365134cb3f4a68fba03274801cada71fdb (patch)
tree046ce799c67425430b4b41dd756f6dc0e4a7cc14 /apps/files_trashbin/index.php
parent97222b1de5349ac31abf518b7fd762b24947e237 (diff)
downloadnextcloud-server-718830365134cb3f4a68fba03274801cada71fdb.tar.gz
nextcloud-server-718830365134cb3f4a68fba03274801cada71fdb.zip
let the home icon link to the files view in the trash bin
Diffstat (limited to 'apps/files_trashbin/index.php')
-rw-r--r--apps/files_trashbin/index.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files_trashbin/index.php b/apps/files_trashbin/index.php
index 779db9bc31c..2e4c4953a16 100644
--- a/apps/files_trashbin/index.php
+++ b/apps/files_trashbin/index.php
@@ -95,9 +95,10 @@ foreach (explode('/', $dir) as $i) {
}
}
-$breadcrumbNav = new OCP\Template('files', 'part.breadcrumb', '');
+$breadcrumbNav = new OCP\Template('files_trashbin', 'part.breadcrumb', '');
$breadcrumbNav->assign('breadcrumb', $breadcrumb);
$breadcrumbNav->assign('baseURL', OCP\Util::linkTo('files_trashbin', 'index.php') . '?dir=');
+$breadcrumbNav->assign('home', OCP\Util::linkTo('files', 'index.php') . '?dir=');
$list = new OCP\Template('files_trashbin', 'part.list', '');
$list->assign('files', $files);