From 781b93d40a43707ec4b5a47616b5c9f3017a526a Mon Sep 17 00:00:00 2001 From: stekkel Date: Thu, 6 Nov 2003 00:37:19 +0000 Subject: [PATCH] Fixed reg match for $MDNSent flag git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@6095 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/read_body.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/read_body.php b/src/read_body.php index 254ab767..bc267c6b 100644 --- a/src/read_body.php +++ b/src/read_body.php @@ -143,7 +143,7 @@ function printer_friendly_link($mailbox, $passed_id, $passed_ent_id, $color) { function ServerMDNSupport($read) { /* escaping $ doesn't work -> \x36 */ - $ret = preg_match('/(\x36MDNSent|\\\*)/i', $read); + $ret = preg_match('/(\x36MDNSent|\\\\\*)/i', $read); return $ret; } -- 2.25.1