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:
authorThomas Müller <thomas.mueller@tmit.eu>2014-05-02 17:51:41 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2014-05-02 17:53:46 +0400
commit6e75b37d04b5daf00f85eed925fd5b0203d09cb5 (patch)
treefa4ad1f2e1922d6c54ae9bfd56efb1cbc42b6b95 /apps/files_sharing/public.php
parent899c7c04436eb5bd228e5bfa7166be24a746d774 (diff)
disable download button if zip download is disabled
Diffstat (limited to 'apps/files_sharing/public.php')
-rw-r--r--apps/files_sharing/public.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php
index 3abcbf291ff..e17ffc48036 100644
--- a/apps/files_sharing/public.php
+++ b/apps/files_sharing/public.php
@@ -165,12 +165,13 @@ if (isset($path)) {
$folder->assign('disableSharing', true);
$folder->assign('trash', false);
$tmpl->assign('folder', $folder->fetchPage());
- $maxInputFileSize = OCP\Config::getSystemValue('maxZipInputSize', OCP\Util::computerFileSize('800 MB'));
$allowZip = OCP\Config::getSystemValue('allowZipDownload', true);
$tmpl->assign('allowZipDownload', intval($allowZip));
+ $tmpl->assign('showDownloadButton', intval($allowZip));
$tmpl->assign('downloadURL',
OCP\Util::linkToPublic('files') . $urlLinkIdentifiers . '&download&path=' . urlencode($getPath));
} else {
+ $tmpl->assign('showDownloadButton', true);
$tmpl->assign('dir', $dir);
// Show file preview if viewer is available