From: Thomas Mueller Date: Mon, 18 Jun 2012 20:48:52 +0000 (+0200) Subject: fixes oc-1026 X-Git-Tag: v4.5.0beta1~74^2~410^2~3^2~1 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=a1364c9726b1511a193ced8dac00e44d5515437b;p=nextcloud-server.git fixes oc-1026 --- diff --git a/apps/files_sharing/get.php b/apps/files_sharing/get.php index e2fcb82750d..a051451d33a 100644 --- a/apps/files_sharing/get.php +++ b/apps/files_sharing/get.php @@ -61,7 +61,7 @@ if (isset($_GET['token']) && $source = OC_Share::getSource($_GET['token'])) { $list->assign("downloadURL", OCP\Util::linkTo("", "public.php")."?service=files&token=".$token."&path="); $list->assign("readonly", true); $tmpl = new OCP\Template("files", "index", "user"); - $tmpl->assign("fileList", $list->fetchPage()); + $tmpl->assign("fileList", $list->fetchPage(), false); $tmpl->assign("breadcrumb", $breadcrumbNav->fetchPage()); $tmpl->assign("readonly", true); $tmpl->assign("allowZipDownload", false);