From 4054761ae3e2d7b6e921e07134b6808c5be90839 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Tue, 30 Apr 2002 12:09:24 +0000 Subject: [PATCH] Noted 'fix' for non-multibyte charsets and searching - RomanZu git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@2548 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/functions_search.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/functions_search.php b/phpBB/includes/functions_search.php index b02d094b6b..526670e84f 100644 --- a/phpBB/includes/functions_search.php +++ b/phpBB/includes/functions_search.php @@ -101,7 +101,7 @@ function split_words(&$entry, $mode = 'post') } else { - preg_match_all('/(\*?[a-z0-9]+\*?)|\b([a-z0-9]+)\b/', $entry, $split_entries); + preg_match_all('/(\*?[à-ÿa-z0-9]+\*?)|\b([à-ÿa-z0-9]+)\b/', $entry, $split_entries); } return $split_entries[1];