diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-01-13 18:59:33 +0100 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2022-01-14 22:34:04 +0000 |
commit | 7c1dfd985067becbafa625cde20623f868568897 (patch) | |
tree | cd12811c9b76bf7c73512d49675d2c16e1b75546 /apps | |
parent | 834385a1907574f7f9ef0945eddb8fcc87bf5bf4 (diff) | |
download | nextcloud-server-7c1dfd985067becbafa625cde20623f868568897.tar.gz nextcloud-server-7c1dfd985067becbafa625cde20623f868568897.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> |