fixed problem with clean-function... not necessary...

This commit is contained in:
Kim Huebel 2017-11-02 21:27:18 +00:00
parent 30598cd68d
commit 230352ddbc

View file

@ -52,7 +52,7 @@ function createConfigLines() {
$out ="";
foreach($_GET as $key=>$val) {
if($key != "cmd") {
$val = clean($val);
//$val = clean($val);
$out .= "define(\"$key\", \"$val\");"."\n";
}
}