From 4e58326be32f853b5a8387d8e6e34911084e92ab Mon Sep 17 00:00:00 2001 From: Cameron Date: Sun, 28 Feb 2021 08:33:37 -0800 Subject: [PATCH] Issue #4427 - e_QUERY --- e107_handlers/e107_class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e107_handlers/e107_class.php b/e107_handlers/e107_class.php index 22618466b..94a2df218 100644 --- a/e107_handlers/e107_class.php +++ b/e107_handlers/e107_class.php @@ -5461,7 +5461,7 @@ class e107 // e_QUERY SHOULD NOT BE DEFINED IF IN SNIGLE ENTRY MODE OR ALL URLS WILL BE BROKEN - it's defined later within the the router if(!deftrue("e_SINGLE_ENTRY")) { - $e_QUERY = filter_var($e_QUERY, FILTER_SANITIZE_URL); //FIXME Breaks non-latin chars: @see https://github.com/e107inc/e107/issues/719 + $e_QUERY = filter_var($e_QUERY, FILTER_SANITIZE_FULL_SPECIAL_CHARS); //FIXME Breaks non-latin chars: @see https://github.com/e107inc/e107/issues/719 if(!defined('e_QUERY')) { define('e_QUERY', $e_QUERY);