Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjoern Schiessle <bjoern@schiessle.org>2018-07-19 23:38:17 +0300
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-07-21 16:02:21 +0300
commit977c4626987764933ce2ac25011ce160fd3e016e (patch)
treeb6db97b8ac1225f5e2fdcfe815baf59a02e7c104 /apps/files_sharing/templates
parent3a11c26cb49c7d5de3410075d86e165a8452a761 (diff)
move the note up, so that it is also visible in the file drop view
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
Diffstat (limited to 'apps/files_sharing/templates')
-rw-r--r--apps/files_sharing/templates/public.php11
1 files changed, 6 insertions, 5 deletions
diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php
index 4aedf986962..81729c179fc 100644
--- a/apps/files_sharing/templates/public.php
+++ b/apps/files_sharing/templates/public.php
@@ -29,13 +29,14 @@ $maxUploadFilesize = min($upload_max_filesize, $post_max_size);
<input type="hidden" name="filesize" value="<?php p($_['nonHumanFileSize']); ?>" id="filesize">
<?php endif; ?>
<input type="hidden" name="maxSizeAnimateGif" value="<?php p($_['maxSizeAnimateGif']); ?>" id="maxSizeAnimateGif">
+<?php if (isset($_['note']) && $_['note'] !== '') : ?>
+ <div id="note">
+ <?php p($l->t('Note:')); p(' ' . $_['note']); ?>
+ </div>
+<?php endif; ?>
+
<?php if (!isset($_['hideFileList']) || (isset($_['hideFileList']) && $_['hideFileList'] === false)) { ?>
<div id="files-public-content">
- <?php if (isset($_['note']) && $_['note'] !== '') : ?>
- <div id="note">
- <?php p($l->t('Note:')); p(' ' . $_['note']); ?>
- </div>
- <?php endif; ?>
<div id="preview">
<?php if (isset($_['folder'])): ?>
<?php print_unescaped($_['folder']); ?>