- Posts: 15
- Thank you received: 5
I fixed it by changingPHP Notice: Trying to get property of non-object in /components/com_icagenda/helpers/icmodel.php on line 839
PHP Fatal error: Call to a member function get() on a non-object in /components/com_icagenda/helpers/icmodel.php on line 839
if ($menuItem->params->get('show_page_heading', 1)) {
if (is_object($menuItem) && $menuItem->params->get('show_page_heading', 1)) {
I changedPHP Notice: Undefined index: template in /components/com_icagenda/helpers/icmodel.php on line 1365
protected function template (){return $this->options['template'];}
protected function template (){return isset($this->options['template']) ? $this->options['template'] : '';}
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.