From 1d4bd6d1f09bed9d9ef72d4f9706e6ebfb4b49eb Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Wed, 19 May 2021 17:01:18 +0200 Subject: [PATCH] place submit outside of content area --- views/bootstrap/class.AddFile.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/views/bootstrap/class.AddFile.php b/views/bootstrap/class.AddFile.php index 7e7f51e2d..f01617664 100644 --- a/views/bootstrap/class.AddFile.php +++ b/views/bootstrap/class.AddFile.php @@ -147,12 +147,12 @@ $(document).ready( function() { $msg = getMLText("max_upload_size").": ".SeedDMS_Core_File::format_filesize($mus2); $this->warningMsg($msg); - $this->contentContainerStart(); ?>
contentContainerStart(); $this->formField( getMLText("local_file"), ($enablelargefileupload ? $this->getFineUploaderHtml() : $this->getFileChooserHtml('userfile[]', false)) @@ -205,11 +205,11 @@ $(document).ready( function() { ) ); } + $this->contentContainerEnd(); $this->formSubmit(getMLText('add')); ?>
contentContainerEnd(); $this->contentEnd(); $this->htmlEndPage();