diff options
author | szaimen <szaimen@e.mail.de> | 2022-02-09 09:47:44 +0100 |
---|---|---|
committer | Carl Schwan <carl@carlschwan.eu> | 2022-02-10 10:35:19 +0100 |
commit | f0424378f68ee222bc9914af6e391624d9f3c711 (patch) | |
tree | 1ea8c3910921b4142899d73c717187a0cb48429c /apps/files_sharing/templates/public.php | |
parent | 16e9e242ed85d656347d8d0cd8dec5d55a4d8152 (diff) | |
download | nextcloud-server-f0424378f68ee222bc9914af6e391624d9f3c711.tar.gz nextcloud-server-f0424378f68ee222bc9914af6e391624d9f3c711.zip |
Revert "Add non-breaking space in the file size"
Signed-off-by: szaimen <szaimen@e.mail.de>
Diffstat (limited to 'apps/files_sharing/templates/public.php')
-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 677f015ce81..33dd6ecd189 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 echo($_['fileSize']) ?>) + <?php p($_['filename'])?> (<?php p($_['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 echo($_['fileSize']) ?>) + <?php p($_['filename'])?> (<?php p($_['fileSize']) ?>) </div> <a href="<?php p($_['downloadURL']); ?>" id="downloadFile" class="button"> <span class="icon icon-download"></span> |