From 8105c4d6cd4e7df979738eb9e117f3d14878a290 Mon Sep 17 00:00:00 2001 From: Stephen Abello Date: Thu, 9 Sep 2021 11:02:18 +0200 Subject: [PATCH] =?UTF-8?q?N=C2=B03913=20Fix=20last=20step=20double=20scro?= =?UTF-8?q?llbar=20on=20smaller=20screen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup/wizardsteps.class.inc.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup/wizardsteps.class.inc.php b/setup/wizardsteps.class.inc.php index 2389f36e6..0ea8d7c92 100644 --- a/setup/wizardsteps.class.inc.php +++ b/setup/wizardsteps.class.inc.php @@ -2591,10 +2591,10 @@ class WizStepDone extends WizardStep "); } - $sForm = '
'; + $sForm = '
'; $sForm .= ''; $sForm .= ''; - $sForm .= "

"; + $sForm .= "
"; $sForm .= '
'; $sPHPVersion = phpversion(); $sMySQLVersion = SetupUtils::GetMySQLVersion( @@ -2670,7 +2670,7 @@ class WizStepDone extends WizardStep $oPage->add(''); $sForm = addslashes($sForm); - $oPage->add_ready_script("$('#wiz_form').after('$sForm');"); + $oPage->add_ready_script("$('#wiz_form').append('$sForm');"); // avoid leaving in a dirty state SetupUtils::ExitMaintenanceMode(false); SetupUtils::ExitReadOnlyMode(false);