Bug #8767: Search for correct quote escape character
authorMichael M Slusarz <slusarz@curecanti.org>
Tue, 15 Dec 2009 09:35:02 +0000 (02:35 -0700)
committerMichael M Slusarz <slusarz@curecanti.org>
Tue, 15 Dec 2009 09:35:02 +0000 (02:35 -0700)
framework/Imap_Client/lib/Horde/Imap/Client/Socket.php

index 06042d3..924ed35 100644 (file)
@@ -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 = '';