diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2012-06-18 22:48:52 +0200 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2012-06-18 22:48:52 +0200 |
commit | a1364c9726b1511a193ced8dac00e44d5515437b (patch) | |
tree | 60fc250da0196ab85971cc741aeb558d02bfd990 /apps/files_sharing | |
parent | cfb3b633f50decbe0ebd04ba46eaea5f4e5fa226 (diff) | |
download | nextcloud-server-a1364c9726b1511a193ced8dac00e44d5515437b.tar.gz nextcloud-server-a1364c9726b1511a193ced8dac00e44d5515437b.zip |
fixes oc-1026
Diffstat (limited to 'apps/files_sharing')
-rw-r--r-- | apps/files_sharing/get.php | 2 |
1 files changed, 1 insertions, 1 deletions
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); |