From 5b176a2effab90fa28a91fbbd9821453d562d1b1 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Mon, 25 Mar 2002 12:39:17 +0000 Subject: [PATCH] Fix bad word cockup ... oh look the censor failed and let cockup through, oh, and again ... geez sourceforge needs better censors for its CVS system git-svn-id: file:///svn/phpbb/trunk@2426 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 b94452eff1..7be4eb6342 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[] = '\1' . $row['replacement'] . '\2'; + $orig_word[] = "#\b(" . str_replace("\*", "\w*?", phpbb_preg_quote($row['word'], "#")) . ")\b#i"; + $replacement_word[] = $row['replacement']; } while ( $row = $db->sql_fetchrow($result) ); }