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