bugfixing setup.php

This commit is contained in:
Kim Huebel 2017-10-17 18:18:56 +00:00
parent cd178e433e
commit 7db1ec1493
2 changed files with 2 additions and 3 deletions

View file

@ -45,8 +45,7 @@ function isProcessRunning($processname) {
}
function clean($string) {
return preg_replace('/[^A-Za-z0-9\-\/\ \.\_]/', '', $string); // Removes special chars.
return preg_replace('/[^A-Za-z0-9\-\/\ \.\_\>\&]/', '', $string); // Removes special chars.
}
function createConfigLines() {

View file

@ -1,3 +1,3 @@
<?php
define("VERSION", "20170923-1 (".getGitVersion().")");
define("VERSION", "20171017-1 (".getGitVersion().")");
?>