From a118906f2676ee20d2d8c97567ab6aa143a61f11 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Mon, 4 Mar 2013 21:45:21 +0100 Subject: [PATCH] fixes #2089 --- apps/files_trashbin/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_trashbin/index.php b/apps/files_trashbin/index.php index 8e726836f8..779db9bc31 100644 --- a/apps/files_trashbin/index.php +++ b/apps/files_trashbin/index.php @@ -104,7 +104,7 @@ $list->assign('files', $files); $list->assign('baseURL', OCP\Util::linkTo('files_trashbin', 'index.php'). '?dir='.$dir); $list->assign('downloadURL', OCP\Util::linkTo('files_trashbin', 'download.php') . '?file='.$dir); $list->assign('disableSharing', true); -$list->assign('dirlisting', $dirlisting); +$tmpl->assign('dirlisting', $dirlisting); $list->assign('disableDownloadActions', true); $tmpl->assign('breadcrumb', $breadcrumbNav->fetchPage()); $tmpl->assign('fileList', $list->fetchPage());