From df798a3d629c127b5dc67d8f782b738caf3e7c19 Mon Sep 17 00:00:00 2001 From: stekkel Date: Wed, 2 Nov 2005 22:26:24 +0000 Subject: [PATCH] Sorry, copy paste didn't workout as it should. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@10235 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/compose.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/compose.php b/src/compose.php index f2b5a4b4..854f03f8 100644 --- a/src/compose.php +++ b/src/compose.php @@ -1672,13 +1672,13 @@ function deliverMessage($composeMessage, $draft=false) { $aMailbox = sqm_api_mailbox_select($imap_stream, $iAccount, $mailbox,array('setindex' => $what, 'offset' => $startMessage),array()); //sqimap_mailbox_select ($imap_stream, $mailbox); $aUpdatedMsgs = sqimap_toggle_flag($imap_stream, array($passed_id), '\\Answered', true, false); - if (isset($aUpdatedMsgs[$iUid]['FLAGS'])) { + if (isset($aUpdatedMsgs[$passed_id]['FLAGS'])) { /** * Only update the cached headers if the header is * cached. */ - if (isset($aMailbox['MSG_HEADERS'][$iUid])) { - $aMailbox['MSG_HEADERS'][$iUid]['FLAGS'] = $aMsg['FLAGS']; + if (isset($aMailbox['MSG_HEADERS'][$passed_id])) { + $aMailbox['MSG_HEADERS'][$passed_id]['FLAGS'] = $aMsg['FLAGS']; } } } -- 2.25.1