From 14b6e1447da88a3f3174058400368c2ba7a22613 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Tue, 19 Mar 2002 00:08:18 +0000 Subject: [PATCH] phpbb_preg_quote that bad word replace ... just in case ... git-svn-id: file:///svn/phpbb/trunk@2331 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 11ca9fc642..9e8b72d4dd 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -445,7 +445,7 @@ function obtain_word_list(&$orig_word, &$replacement_word) { do { - $orig_word[] = '#\W(' . str_replace('\*', '\w*?', preg_quote($row['word'])) . ')\W#is'; + $orig_word[] = '#\W(' . str_replace('\*', '\w*?', phpbb_preg_quote($row['word']), "#") . ')\W#is'; $replacement_word[] = $row['replacement']; } while ( $row = $db->sql_fetchrow($result) );