From 322f4e372361798b21e70c4b0ee3fd4f7d268559 Mon Sep 17 00:00:00 2001 From: kink Date: Mon, 10 Mar 2003 16:31:57 +0000 Subject: [PATCH] Fix copyerror, this eliminates some warnings of undefined index in the msg list. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@4631 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/imap_mailbox.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/imap_mailbox.php b/functions/imap_mailbox.php index 7bc1313d..f13bae91 100755 --- a/functions/imap_mailbox.php +++ b/functions/imap_mailbox.php @@ -553,7 +553,7 @@ function sqimap_mailbox_list($imap_stream) { $inbox_ary = sqimap_run_command ($imap_stream, "LIST \"\" \"INBOX\"", true, $response, $message); /* Another workaround for literals */ - if (isset($inbox_ary[1]) && substr($inbox_ary[$i],-3) == "}\r\n") { + if (isset($inbox_ary[1]) && substr($inbox_ary[0],-3) == "}\r\n") { if (ereg("^(\\* [A-Z]+.*)\\{[0-9]+\\}([ \n\r\t]*)$", $inbox_ary[0], $regs)) { $inbox_ary[0] = $regs[1] . '"' . addslashes(trim($inbox_ary[1])) . -- 2.25.1