diff options
Diffstat (limited to 'phpBB/posting.php')
-rw-r--r-- | phpBB/posting.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php index 32fc055f4e..200971dd00 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -70,7 +70,7 @@ function clean_words($entry, &$stopword_list, &$synonym_list) for ($j = 0; $j < count($stopword_list); $j++) { $filter_word = trim(strtolower($stopword_list[$j])); - $entry = preg_replace("/\b" . preg_quote($filter_word, "/") . "\b/is", " ", $entry); + $entry = preg_replace("/\b" . phpbb_preg_quote($filter_word, "/") . "\b/is", " ", $entry); } } @@ -79,7 +79,7 @@ function clean_words($entry, &$stopword_list, &$synonym_list) for ($j = 0; $j < count($synonym_list); $j++) { list($replace_synonym, $match_synonym) = split(" ", trim(strtolower($synonym_list[$j]))); - $entry = preg_replace("/\b" . preg_quote(trim($match_synonym), "/") . "\b/is", " " . trim($replace_synonym) . " ", $entry); + $entry = preg_replace("/\b" . phpbb_preg_quote(trim($match_synonym), "/") . "\b/is", " " . trim($replace_synonym) . " ", $entry); } } |