From 794bf6c869b09cadf2e94dee883947b54bfcb090 Mon Sep 17 00:00:00 2001 From: phl0 Date: Thu, 2 Nov 2017 22:31:06 +0100 Subject: [PATCH] Allow : for logo URL --- include/tools.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/tools.php b/include/tools.php index 28399b8..06cdc44 100644 --- a/include/tools.php +++ b/include/tools.php @@ -45,7 +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() {