Editing in Joomla 3.4 Admin throws PHP Fatal Error

I'm using the latest GitHib release of Fabrik with Joomla 3.4. When I try to edit from the Admin backend using the Admin template bootstrap, I'm getting the following error:

Code:
PHP Fatal error:  Call to a member function get() on a non-object in ./components/com_fabrik/views/list/tmpl/bootstrap/default.php on line 15

When I try to edit from the Admin backend using the Admin template div, I'm getting the following error:

Code:
PHP Fatal error:  Call to a member function get() on a non-object in ./components/com_fabrik/views/list/tmpl/div/default.php on line 24
I think it is Joomla 3.4 related. I cobbled together a fix from other posts of similar problems.
Lines 15 and 24 are the same in the template files:
Code:
$pageClass = $this->params->get('pageclass_sfx', '');
Just before this previous line, I added the following line:
Code:
if(!is_object($this->params)) $this->params = class_exists('JParameter') ? new JParameter($this->params) : new JRegistry($this->params);
If you're getting the same error, this may be a temporary or permanent fix.
 
It was the metatag fix. I've commited a slightly different one now, try updating from GitHub again.
 
We are in need of some funding.
More details.

Thank you.

Members online

No members online now.
Back
Top