From 9ff68ef0c21dcb016a093c64e2a59d6f2e9e8a33 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Wed, 8 Jan 2003 11:12:28 +0000 Subject: [PATCH] Damn it I could've sworn this was committed last night ... guess I only corrected it in the bug report response ... maybe this is why phpbb.com is failing assuming James used CVS git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@3274 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/emailer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/emailer.php b/phpBB/includes/emailer.php index 72a881f266..58da71464f 100755 --- a/phpBB/includes/emailer.php +++ b/phpBB/includes/emailer.php @@ -169,7 +169,7 @@ class emailer if ($drop_header != '') { - $this->msg = trim(preg_replace('#' . phpbb_preg_quote('#', $drop_header) . '#s', '', $this->msg)); + $this->msg = trim(preg_replace('#' . phpbb_preg_quote($drop_header, '#') . '#s', '', $this->msg)); } return true;