diff options
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index f75a9ad941..c6bff2ce34 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -717,7 +717,7 @@ function obtain_word_list(&$orig_word, &$replacement_word) { do { - $orig_word[] = "#\b(" . str_replace("*", "\w*?", $row['word']) . ")\b#is"; + $orig_word[] = "#\b(" . str_replace("\*", "\w*?", preg_quote($row['word'])) . ")\b#is"; $replacement_word[] = $row['replacement']; } while ( $row = $db->sql_fetchrow($result) ); |