From 1ab738dcb2f3964dea9e2707e3613df17a4ae71a Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Tue, 19 Mar 2002 00:43:51 +0000 Subject: [PATCH] Stuff that phpbb_preg ... not including bbcode and can't be bothered to move phpbb_preg out ... git-svn-id: file:///svn/phpbb/trunk@2335 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 9e8b72d4dd..913434ef47 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*?', phpbb_preg_quote($row['word']), "#") . ')\W#is'; + $orig_word[] = '#\W(' . str_replace('\*', '\w*?', preg_quote($row['word']) ) . ')\W#is'; $replacement_word[] = $row['replacement']; } while ( $row = $db->sql_fetchrow($result) );