By sacrealtor on Thursday, 18 February 2021
Replies 1
Likes 0
Views 603
Votes 0
Our error log is out of control with this error but I'm unable to find a way to fix it. We have not been able to use the ical download option and it is turned off.

PHP Deprecated: Non-static method iCalImport::unixTime() should not be called statically in /home/sacrealt/public_html/components/com_jevents/libraries/iCalEvent.php on line 468
Hello,

Thanks for pointing this out.

Please open:
/home/sacrealt/public_html/components/com_jevents/libraries/iCalEvent.php

change line 468 from:


$start = iCalImport::unixTime($this->recurrence_id, $tz);


to:


$icalImport = new iCalImport();
$start = $icalImport->unixTime($this->recurrence_id, $tz);


Many thanks
Tony
·
4 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post