Commit 593d7525 authored by Franco Fichtner's avatar Franco Fichtner

wizard: do not interpret passed values for #1359

parent 67e3e707
......@@ -197,7 +197,7 @@ function update_config_field($field, $updatetext, $unset, $arraynum, $field_type
if($field_type == "interfaces_selection") {
$var = "\$config{$field_conv}";
$text = "if (isset({$var})) unset({$var});";
$text .= "\$config" . $field_conv . " = \"" . $updatetext . "\";";
$text .= "\$config" . $field_conv . " = '" . addslashes($updatetext) . "';";
eval($text);
return;
}
......@@ -206,7 +206,7 @@ function update_config_field($field, $updatetext, $unset, $arraynum, $field_type
$text = "unset(\$config" . $field_conv . ");";
eval($text);
}
$text = "\$config" . $field_conv . " = \"" . addslashes($updatetext) . "\";";
$text = "\$config" . $field_conv . " = '" . addslashes($updatetext) . "';";
eval($text);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment