diff --git a/src/mibew/libs/common.php b/src/mibew/libs/common.php index a96a2c2e..e950f81e 100644 --- a/src/mibew/libs/common.php +++ b/src/mibew/libs/common.php @@ -859,7 +859,7 @@ function sanitize_reg_escape($string) function safe_htmlspecialchars($string) { - $string = preg_replace('/[\x00-\x08\x10-\x1f]/', '', $string); + $string = preg_replace('/[\x00-\x08\x10-\x1f\v]/', '', $string); return htmlspecialchars($string, ENT_QUOTES); }