diff --git a/classes/Web/init.php b/classes/Web/init.php index 65d286b..d911fa8 100644 --- a/classes/Web/init.php +++ b/classes/Web/init.php @@ -5,7 +5,7 @@ $BOT = new Base; if (file_get_contents("php://input")) { $text = file_get_contents("php://input"); }elseif (!empty($_SERVER['QUERY_STRING'])){ - $text = $_SERVER['QUERY_STRING']; + $text = urldecode($_SERVER['QUERY_STRING']); }else{ exit; } \ No newline at end of file