summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjoern Schiessle <schiessle@owncloud.com>2013-12-13 12:17:10 +0100
committerBjoern Schiessle <schiessle@owncloud.com>2013-12-13 12:17:10 +0100
commit3831b8b1be693a3d4babb378378f1baa676b1cc3 (patch)
treeeac132f98cc833c38cd4469502a5bc21c6aa77ae
parent7b30ffbf23bb17e22511f0ba7bba53304590f170 (diff)
downloadnextcloud-server-3831b8b1be693a3d4babb378378f1baa676b1cc3.tar.gz
nextcloud-server-3831b8b1be693a3d4babb378378f1baa676b1cc3.zip
always show 'Deleted Files' breadcrumb
-rw-r--r--apps/files_trashbin/templates/part.breadcrumb.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/files_trashbin/templates/part.breadcrumb.php b/apps/files_trashbin/templates/part.breadcrumb.php
index 4acc298adbe..fdf78c190d0 100644
--- a/apps/files_trashbin/templates/part.breadcrumb.php
+++ b/apps/files_trashbin/templates/part.breadcrumb.php
@@ -3,11 +3,11 @@
<img src="<?php print_unescaped(OCP\image_path('core', 'places/home.svg'));?>" class="svg" />
</a>
</div>
-<?php if(count($_["breadcrumb"])):?>
- <div class="crumb svg"
- data-dir='/'>
+<div class="crumb svg"
+ data-dir='/'>
<a href="<?php p($_['baseURL']); ?>"><?php p($l->t("Deleted Files")); ?></a>
- </div>
+</div>
+<?php if(count($_["breadcrumb"])):?>
<?php endif;?>
<?php for($i=0; $i<count($_["breadcrumb"]); $i++):
$crumb = $_["breadcrumb"][$i];