Fixed reg match for $MDNSent flag
authorstekkel <stekkel@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 6 Nov 2003 00:37:19 +0000 (00:37 +0000)
committerstekkel <stekkel@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 6 Nov 2003 00:37:19 +0000 (00:37 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@6095 7612ce4b-ef26-0410-bec9-ea0150e637f0

src/read_body.php

index 254ab767844d51a57cb048b3d9aaff9c80026928..bc267c6b1e91f3aff3461561e2aeb33dcd63ebe1 100644 (file)
@@ -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;
 }