From ddb97a0d15f1a214d96b2b75bdad8e85502b45d9 Mon Sep 17 00:00:00 2001 From: kotnik Date: Fri, 17 Feb 2012 14:48:18 +0100 Subject: [PATCH] Issue #1444006 by kotnik: Removed disallowed Unicode code point. --- includes/cleanstring.inc | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/cleanstring.inc b/includes/cleanstring.inc index e4943e4..530fc0f 100644 --- a/includes/cleanstring.inc +++ b/includes/cleanstring.inc @@ -58,9 +58,9 @@ define('CTOOLS_PREG_CLASS_ALNUM', '\x{2ce5}-\x{2cff}\x{2d6f}\x{2e00}-\x{3005}\x{3007}-\x{303b}\x{303d}-\x{303f}' . '\x{3099}-\x{309e}\x{30a0}\x{30fb}-\x{30fe}\x{3190}-\x{319f}\x{31c0}-\x{31cf}' . '\x{3200}-\x{33ff}\x{4dc0}-\x{4dff}\x{a015}\x{a490}-\x{a716}\x{a802}\x{a806}' . -'\x{a80b}\x{a823}-\x{a82b}\x{d800}-\x{f8ff}\x{fb1e}\x{fb29}\x{fd3e}\x{fd3f}' . -'\x{fdfc}-\x{fe6b}\x{feff}-\x{ff0f}\x{ff1a}-\x{ff20}\x{ff3b}-\x{ff40}\x{ff5b}-' . -'\x{ff65}\x{ff70}\x{ff9e}\x{ff9f}\x{ffe0}-\x{fffd}'); +'\x{a80b}\x{a823}-\x{a82b}\x{f8ff}\x{fb1e}\x{fb29}\x{fd3e}\x{fd3f}\x{fdfc}-' . +'\x{fe6b}\x{feff}-\x{ff0f}\x{ff1a}-\x{ff20}\x{ff3b}-\x{ff40}\x{ff5b}-\x{ff65}' . +'\x{ff70}\x{ff9e}\x{ff9f}\x{ffe0}-\x{fffd}'); /** -- 1.7.9.1