From: kink Date: Fri, 24 Jun 2005 08:15:38 +0000 (+0000) Subject: Fix variable typo in parseFetch which caused IMAP errors with Exchange. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=f8cbf07fac985170c0bcb4ce9bfc79378be6dd56;p=squirrelmail.git Fix variable typo in parseFetch which caused IMAP errors with Exchange. Thanks Christian Froemmel from Charite. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@9657 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/ChangeLog b/ChangeLog index d095c98e..da5cdd99 100644 --- a/ChangeLog +++ b/ChangeLog @@ -378,6 +378,8 @@ Version 1.5.1 -- CVS configuration' subsection. - Javascript relied on rg=1 in the login page to force focus to password box if username was supplied as a url arg (#1222617). + - Fix variable typo in parseFetch which caused IMAP errors on Exchange. + Thanks Christian Froemmel. Version 1.5.0 - 2 February 2004 ------------------------------- diff --git a/functions/imap_messages.php b/functions/imap_messages.php index 32cef7ee..92396803 100755 --- a/functions/imap_messages.php +++ b/functions/imap_messages.php @@ -798,7 +798,7 @@ function parseFetch($aResponse,$aMessageList = array()) { } } $msgi ="$unique_id"; - $msg['UID'] = $unique_id; + $aMsg['UID'] = $unique_id; $aMessageList[$msgi] = $aMsg; } return $aMessageList; @@ -962,4 +962,4 @@ function sqimap_get_message($imap_stream, $id, $mailbox) { return $msg; } -?> \ No newline at end of file +?>