|
From: Dave A. <da...@zi...> - 2023-11-25 01:09:18
|
On Fri, November 24, 2023 11:03 am, Paul Lesniewski wrote:
> Hello Dave,
>
>
>> Upgrade from Squirrelmail 1.5.2 build 14986 to 14998 resulted in a blank
>> right pane.
>
> Thank you for reporting this.
>
>
>> diff -bur squirrelmail/functions/imap_messages.php @@ -117,7 +117,7 @@
>> // some broken IMAP servers do not return UID elements on UID STORE
>> // if this is the case, then we need to do a UID FETCH
>> if (!empty($parseFetchResults) - && !isset(reset($parseFetchResults)['UID'])) {
>> + && !isset($parseFetchResults)['UID']) {
>> $aResponse = sqimap_run_command_list($imap_stream, "FETCH
>> $msgs_id (FLAGS)",
>> $handle_errors, $response, $message, TRUE);
>> $parseFetchResults = parseFetch($aResponse,$aMessageList);
>> }
>>
>
> The problem is simply a mismatch of parenthesis, nothing more. Fix is
> here and will be included in our next nightly build:
> https://sourceforge.net/p/squirrelmail/code/14999
>
>
> --
> Paul Lesniewski
> SquirrelMail Team
> Please support Open Source Software by donating to SquirrelMail!
> http://squirrelmail.org/donate_paul_lesniewski.php
>
>
>
>
>
> -----
> squirrelmail-devel mailing list Posting guidelines: http://squirrelmail.org/postingguidelines
> List address: squ...@li...
> List archives: http://news.gmane.org/gmane.mail.squirrelmail.devel
> List info (subscribe/unsubscribe/change options):
> https://lists.sourceforge.net/lists/listinfo/squirrelmail-devel
>
>
Hi Paul,
That makes so much more sense. :)
Thanks,
Dave
|