diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-05-02 15:51:41 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-05-02 15:53:46 +0200 |
commit | 6e75b37d04b5daf00f85eed925fd5b0203d09cb5 (patch) | |
tree | fa4ad1f2e1922d6c54ae9bfd56efb1cbc42b6b95 /apps | |
parent | 899c7c04436eb5bd228e5bfa7166be24a746d774 (diff) | |
download | nextcloud-server-6e75b37d04b5daf00f85eed925fd5b0203d09cb5.tar.gz nextcloud-server-6e75b37d04b5daf00f85eed925fd5b0203d09cb5.zip |
disable download button if zip download is disabled
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/public.php | 3 | ||||
-rw-r--r-- | apps/files_sharing/templates/public.php | 2 |
2 files changed, 4 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 diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php index 12d72ca6d77..f3c75134a5f 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -15,10 +15,12 @@ src="<?php print_unescaped(image_path('', 'logo-wide.svg')); ?>" alt="<?php p($theme->getName()); ?>" /></a> <div id="logo-claim" style="display:none;"><?php p($theme->getLogoClaim()); ?></div> <div class="header-right"> + <?php if ($_['showDownloadButton']): ?> <a href="<?php p($_['downloadURL']); ?>" id="download" class="button"> <img class="svg" alt="" src="<?php print_unescaped(OCP\image_path("core", "actions/download.svg")); ?>"/> <?php p($l->t('Download'))?> </a> + <?php endif ?> </div> </div></header> <div id="content"> |