diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-01-13 19:29:21 +0100 |
---|---|---|
committer | Carl Schwan <carl@carlschwan.eu> | 2022-01-14 09:19:15 +0100 |
commit | 46c0ceb59c0d42d575fb36e7e982452e946505be (patch) | |
tree | 55ffe005cd1cabc06e5d6ab1b21aa98890847de4 /apps/files_sharing/templates | |
parent | 2e55ce089954bdab483cb1564a4b00b79b705346 (diff) | |
download | nextcloud-server-46c0ceb59c0d42d575fb36e7e982452e946505be.tar.gz nextcloud-server-46c0ceb59c0d42d575fb36e7e982452e946505be.zip |
Add non-breaking space in the file size
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'apps/files_sharing/templates')
-rw-r--r-- | apps/files_sharing/templates/public.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php index 33dd6ecd189..677f015ce81 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -75,7 +75,7 @@ $maxUploadFilesize = min($upload_max_filesize, $post_max_size); <?php if (isset($_['mimetype']) && strpos($_['mimetype'], 'image') === 0) { ?> <div class="directDownload"> <div> - <?php p($_['filename'])?> (<?php p($_['fileSize']) ?>) + <?php p($_['filename'])?> (<?php echo($_['fileSize']) ?>) </div> <a href="<?php p($_['downloadURL']); ?>" id="downloadFile" class="button"> <span class="icon icon-download"></span> @@ -87,7 +87,7 @@ $maxUploadFilesize = min($upload_max_filesize, $post_max_size); <?php if ($_['previewURL'] === $_['downloadURL'] && !$_['hideDownload']): ?> <div class="directDownload"> <div> - <?php p($_['filename'])?> (<?php p($_['fileSize']) ?>) + <?php p($_['filename'])?> (<?php echo($_['fileSize']) ?>) </div> <a href="<?php p($_['downloadURL']); ?>" id="downloadFile" class="button"> <span class="icon icon-download"></span> |