[horde] Horde 6 ErrorHandler Patch

Andreas Mauser andreas at mauser.info
Mon Feb 2 17:51:01 UTC 2026


Hi,

to make certain things work (ActiveSync, PortalPage) I had to patch the ErrorHandler.

If you hit magic challenges, you may try this:

# Horde 6 ErrorHandler Patch
public static function errorHandler($errno, $errstr, $errfile, $errline)
{
    // This is the "Magic Line" we added:
    if ($errno == E_DEPRECATED || $errno == 8192 || $errno == 16384) return true;

    $er = error_reporting();
    // ... rest of the original code

If Horde Maintainer want to review and comment?

Best regards,
Andreas



More information about the horde mailing list