diff options
author | Vincent Cloutier <vincent1cloutier@gmail.com> | 2014-10-15 20:59:07 -0400 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2014-11-14 16:26:59 +0100 |
commit | fad621140b3fd94c12ddd3b13b37d4c56c5276ff (patch) | |
tree | 4176eb03371d9a7f337afe722002d9a7a82cef7b /apps/files_sharing/templates | |
parent | 988c85d2922a03346389e3656dc71dfee514e645 (diff) | |
download | nextcloud-server-fad621140b3fd94c12ddd3b13b37d4c56c5276ff.tar.gz nextcloud-server-fad621140b3fd94c12ddd3b13b37d4c56c5276ff.zip |
Added download size on public sharing
Diffstat (limited to 'apps/files_sharing/templates')
-rw-r--r-- | apps/files_sharing/templates/public.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php index 6b875d3c2b7..57c8707e962 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -87,7 +87,7 @@ $previewSupported = OC\Preview::isMimeSupported($_['mimetype']) ? 'true' : 'fals <div class="directDownload"> <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 %s', array($_['filename'])))?> + <?php p($l->t('Download %s', array($_['filename'])))?> (<?php p($_['fileSize']) ?>) </a> </div> <div class="directLink"> |