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
This commit is contained in:
Paul S. Owen 2002-04-30 12:09:24 +00:00
parent 142f3bd9d1
commit 4054761ae3

View file

@ -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];