BugFix-problem with detect_switch (#1633)
This commit is contained in:
parent
b93fa7ccee
commit
596319b885
|
|
@ -181,7 +181,7 @@
|
||||||
elseif (strlen($admin_password) < 5) { $messages[] = "Please provide an Admin Password that is 5 or more characters.<br>\n"; }
|
elseif (strlen($admin_password) < 5) { $messages[] = "Please provide an Admin Password that is 5 or more characters.<br>\n"; }
|
||||||
if ( count($messages) > $existing_errors) { $install_step = 'config_detail'; }
|
if ( count($messages) > $existing_errors) { $install_step = 'config_detail'; }
|
||||||
}
|
}
|
||||||
if($re_detect_switch == true ){
|
if($re_detect_switch === true ){
|
||||||
$install_step = 'detect_config';
|
$install_step = 'detect_config';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,8 @@
|
||||||
$detect_ok = false;
|
$detect_ok = false;
|
||||||
}
|
}
|
||||||
echo "<input type='hidden' name='install_language' value='".$_SESSION['domain']['language']['code']."'/>\n";
|
echo "<input type='hidden' name='install_language' value='".$_SESSION['domain']['language']['code']."'/>\n";
|
||||||
echo "<input type='hidden' name='install_step' value='detect_config'/>\n";
|
echo "<input type='hidden' name='install_step' value='config_detail'/>\n";
|
||||||
|
echo "<input type='hidden' name='return_install_step' value='select_language'/>\n";
|
||||||
echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
|
echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
|
||||||
|
|
||||||
echo "<tr>\n";
|
echo "<tr>\n";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue