From 1dbb0240f59317ff07d1ca2b62f618680df394be Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Tue, 19 Mar 2002 01:00:37 +0000 Subject: [PATCH] bah git-svn-id: file:///svn/phpbb/trunk@2338 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/functions.php | 4 ++-- 1 file 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) ); }