From: Michael M Slusarz Date: Tue, 15 Dec 2009 09:35:02 +0000 (-0700) Subject: Bug #8767: Search for correct quote escape character X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=a2aafe63cc6354096d7ea22a2e25a8e009e68d9f;p=horde.git Bug #8767: Search for correct quote escape character --- diff --git a/framework/Imap_Client/lib/Horde/Imap/Client/Socket.php b/framework/Imap_Client/lib/Horde/Imap/Client/Socket.php index 06042d323..924ed35c5 100644 --- a/framework/Imap_Client/lib/Horde/Imap/Client/Socket.php +++ b/framework/Imap_Client/lib/Horde/Imap/Client/Socket.php @@ -3609,7 +3609,7 @@ class Horde_Imap_Client_Socket extends Horde_Imap_Client_Base switch ($char) { case '"': if ($c['in_quote']) { - if ($i && ($line[$i - 1] != '//')) { + if ($i && ($line[$i - 1] != '\\')) { $c['in_quote'] = false; $c['ptr'][$c['paren']][] = stripcslashes($tmp); $tmp = '';