diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-07-21 09:28:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-21 09:28:35 +0200 |
commit | dc5608d15ae3425beefd7a33203093865222684b (patch) | |
tree | 5f75fc551bf850e6b3b6f4f19f09daabd6e2b400 /apps/files_sharing | |
parent | ca6c2c785513f4d748a91b0ffc4a29b0ceed30d8 (diff) | |
parent | 1ab1e000e87ff503aceac0a74b1e18674754cebb (diff) | |
download | nextcloud-server-dc5608d15ae3425beefd7a33203093865222684b.tar.gz nextcloud-server-dc5608d15ae3425beefd7a33203093865222684b.zip |
Merge pull request #477 from nextcloud/fix-layout-public-upload
move closing div to the right place
Diffstat (limited to 'apps/files_sharing')
-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 f587b5109d4..fe363ed82f5 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -106,6 +106,7 @@ $maxUploadFilesize = min($upload_max_filesize, $post_max_size); </div> <?php endif; ?> </div> + </div> <?php } else { ?> <input type="hidden" id="upload-only-interface" value="1"/> <div id="public-upload"> @@ -123,7 +124,6 @@ $maxUploadFilesize = min($upload_max_filesize, $post_max_size); </div> </div> <?php } ?> -</div> <?php if (!isset($_['hideFileList']) || (isset($_['hideFileList']) && $_['hideFileList'] !== true)): ?> <input type="hidden" name="dir" id="dir" value="" /> <div class="hiddenuploadfield"> |