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:
authorBjoern Schiessle <schiessle@owncloud.com>2013-12-13 15:17:10 +0400
committerBjoern Schiessle <schiessle@owncloud.com>2013-12-17 14:01:43 +0400
commit8f5dfd0920fde20d9e16d46890fc86d32f58d257 (patch)
tree620b0b710476983a1ecfce1554a2b5e873af50cd /apps/files_trashbin
parentae58a385b7a47da870c05ebd446a008ce804ab8f (diff)
always show 'Deleted Files' breadcrumb
Diffstat (limited to 'apps/files_trashbin')
-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];