wizard: adhere to defaults in the xml

Instead of using the config values even if set...
This commit is contained in:
Franco Fichtner 2017-12-28 11:32:31 +01:00
parent 7b10393f5a
commit ae79fa4f51

View File

@ -430,7 +430,7 @@ function showchange() {
$name = preg_replace("/\s+/", "", $name);
$name = strtolower($name);
if($field['bindstofield'] <> "") {
if (!empty($field['bindstofield']) && !isset($field['value'])) {
$arraynum = "";
$field_conv = "";
$field_split = explode("->", $field['bindstofield']);
@ -447,8 +447,9 @@ function showchange() {
eval($toeval);
}
if(!$field['combinefieldsend'])
if (!$field['combinefieldsend']) {
echo "<tr>";
}
switch ($field['type']) {
case "input":