From 04a5f21a07f9f6162651c13387ccc61560534831 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Tue, 1 Jun 2021 07:06:37 +0200 Subject: [PATCH] place submit button and graph outside of content container --- views/bootstrap/class.SetWorkflow.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/views/bootstrap/class.SetWorkflow.php b/views/bootstrap/class.SetWorkflow.php index a9fbebdd1..3d60834d5 100644 --- a/views/bootstrap/class.SetWorkflow.php +++ b/views/bootstrap/class.SetWorkflow.php @@ -67,7 +67,6 @@ $(document).ready( function() { $this->pageNavigation($this->getFolderPathHTML($folder, true, $document), "view_document", $document); $this->contentHeading(getMLText("set_workflow")); - $this->contentContainerStart(); // Display the Workflow form. $this->rowStart(); $this->columnStart(4); @@ -81,6 +80,7 @@ $(document).ready( function() { contentContainerStart(); $mandatoryworkflow = $user->getMandatoryWorkflow(); $workflows=$dms->getAllWorkflows(); $options = array(); @@ -97,6 +97,7 @@ $(document).ready( function() { 'options'=>$options ) ); + $this->contentContainerEnd(); $this->formSubmit(getMLText('set_workflow')); ?> @@ -116,7 +117,6 @@ $(document).ready( function() { columnEnd(); $this->rowEnd(); - $this->contentContainerEnd(); $this->contentEnd(); $this->htmlEndPage(); } /* }}} */