summaryrefslogtreecommitdiff
path: root/it.class
diff options
context:
space:
mode:
Diffstat (limited to 'it.class')
-rw-r--r--it.class2
1 files changed, 1 insertions, 1 deletions
diff --git a/it.class b/it.class
index 1382073..36bc903 100644
--- a/it.class
+++ b/it.class
@@ -341,7 +341,7 @@ static function convertregex($pattern, $p = null)
static function match($pattern, $string, $p = null)
{
if (!preg_match('/\\\\[wb]|[!\x80-\xff]|\[\[:/i', $pattern) && !$p)
- $r = preg_match('!' . $pattern . '!i', $string, $m); # fast path for simple patterns
+ $r = preg_match('!' . $pattern . '!i' . (ini_get('default_charset') == 'utf-8' ? 'u' : ''), $string, $m); # fast path for simple patterns
else
{
$flags = $p['offset_capture'] ? PREG_OFFSET_CAPTURE : 0;