From 230352ddbc7254ad872ab0ff398b0e2bf87e778f Mon Sep 17 00:00:00 2001 From: Kim Huebel Date: Thu, 2 Nov 2017 21:27:18 +0000 Subject: [PATCH] fixed problem with clean-function... not necessary... --- include/tools.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/tools.php b/include/tools.php index fd47a8f..28399b8 100644 --- a/include/tools.php +++ b/include/tools.php @@ -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"; } }