From 774debb2997c17cc7132c0d41b88f7c1f6a06ebf Mon Sep 17 00:00:00 2001 From: Shoghi Cervantes Date: Sat, 7 Sep 2013 10:18:06 +0200 Subject: [PATCH] Fixed #781 --- src/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/functions.php b/src/functions.php index cdd90d58b..c6bda06b5 100644 --- a/src/functions.php +++ b/src/functions.php @@ -211,7 +211,7 @@ function console($message, $EOL = true, $log = true, $level = 1){ } $message = TextFormat::toANSI($time . $add . $message . FORMAT_RESET); }else{ - $message = $replaced; + $message = TextFormat::clean($replaced); } echo $message; }