| 
     
      
      
      From: Paul L. <pa...@sq...> - 2023-11-24 19:42:24
      
     
   | 
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
 |