• Resolved mr2808

    (@mr2808)


    Hi!

    After Upgrading to 2.4.3 a lot of my The Events Calender-Events are broken.

    Error:

    Uncaught TypeError: Legacy\EmailEncoderBundle\Integration\EventsCalendar::deactivate_logic(): Argument #1 ($filtered_email) must be of type string, null given, called

    I reviewed the coding. This was changed in plugins/email-encoder-bundle/core/includes/integrations/classes/the_events_calendar.php:

    OLD:
    public function deactivate_logic( $filtered_email, $unfiltered_email ) {
    return $unfiltered_email;
    }

    NEW:
    public function deactivate_logic( string $filtered_email, string $unfiltered_email ): string {
    return $unfiltered_email;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.