From d5dc8ae726f33719328d7be6b73195a707dd52cd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= <schiessle@owncloud.com>
Date: Sat, 9 Feb 2013 12:41:47 +0100
Subject: [PATCH] initialize breadcrumbs array

---
 apps/files_trashbin/index.php | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/apps/files_trashbin/index.php b/apps/files_trashbin/index.php
index b78fd4e256..1aceb8ffef 100644
--- a/apps/files_trashbin/index.php
+++ b/apps/files_trashbin/index.php
@@ -67,7 +67,8 @@ foreach ($result as $r) {
 }
 
 // Make breadcrumb
-$pathtohere = '';
+$pathtohere = '';
+$breadcrumb = array();
 foreach (explode('/', $dir) as $i) {
 	if ($i != '') {
 		if ( preg_match('/^(.+)\.d[0-9]+$/', $i, $match) ) {
-- 
GitLab