All Low add-ons are now owned by EEHarbor. Read the blog post.

Support archive

Low events and PHP7

Dan Kingsley 17 Dec 2016 22:25 problem, complete

Low events doesn't seem to have PHP7 compatibility on EE3. I'm getting some errors around mod.low_events.php on line 780. I can give more details if needed. Thanks.

Replies

  1. Low 18 Dec 2016 18:18

    That would be a bug. To fix, open up mod.low_events.php and change line 780 from

    $month = $$match[1]->ee_format($format, $lang);


    to

    $month = ${$match[1]}->ee_format($format, $lang);


    ...which should fix it.

    I'l incorporate it into the next version.

  2. Dan Kingsley 18 Dec 2016 18:44

    Perfect! Thanks for the quick reply and fix.