diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-01-13 18:59:33 +0100 |
---|---|---|
committer | Carl Schwan <carl@carlschwan.eu> | 2022-01-13 19:18:15 +0100 |
commit | 2e55ce089954bdab483cb1564a4b00b79b705346 (patch) | |
tree | 3b5e58663a2ebc17bef382d797e793bb6422d306 /apps | |
parent | 4432709092bd14655e69fdd958172a09d902acbe (diff) | |
download | nextcloud-server-2e55ce089954bdab483cb1564a4b00b79b705346.tar.gz nextcloud-server-2e55ce089954bdab483cb1564a4b00b79b705346.zip |
Improve layout for the public download page
This centers the content inside the pages, while also not hardcoded the
size of the footer.
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'apps')
-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 832e8a00b1a..33dd6ecd189 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -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 p($_['fileSize']) ?>) </div> <a href="<?php p($_['downloadURL']); ?>" id="downloadFile" class="button"> <span class="icon icon-download"></span> |