You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here's my constant, being positioned in Flag, the request "ajax_imap_filter_by_type" is sent and it waits for a GET parameter "list_page" that was not allowed in setup.php
After successfully installing Cypht under 8.3, I'm seeing these warnings.
This warning gets produced every minute:
PHP Warning: Undefined array key "list_page" in /path/to/cypht/modules/imap/handler_modules.php on line 1331
I changed this line:
$list_page = (int) $this->request->get['list_page'];
to:
$list_page = (int) $this->request->get['list_page'] ?? null;
but it still produced the same warning. So I changed it to this:
$list_page = intval($this->request->get['list_page'] ?? null);
and the warnings stopped.
Same with this one:
PHP Warning: Undefined array key "list_page" in /path/to/cypht/modules/imap/handler_modules.php on line 2089
$list_page = intval($this->request->get['list_page'] ?? 1);
I didn't experience a problem with other similar lines in this file, but you may want to do the same thing to lines 734 and 1270.
When navigating to the Snoozed screen, "Server Error" shows on the screen twice, and also produces this error:
When navigating to any screen, except Calendar or Compose, "Server Error" will flash briefly on screen but it doesn't seem to produce an error.
And here are 2 more that I couldn't resolve:
PHP Warning: Undefined variable $imap in /path/to/cypht/modules/imap/handler_modules.php on line 1149
PHP Warning: Attempt to read property "folder_state" on null in /path/to/cypht/modules/imap/handler_modules.php on line 1149
The text was updated successfully, but these errors were encountered: