We have updated this issue to the newest module.
If you see this problem:
<blockquote>Parse error: syntax error, unexpected ‘=’, expecting ‘)’ in plugins/content/ja_tabs.php on line 31</blockquote>
Please try with my guide:
+ Open plugins/content/ja_tabs.php file, at about line 31, find following code:
[PHP]function plgContentJA_tabs( &$subject=null, $params=null )[/PHP]
and change to:
[PHP]function plgContentJA_tabs( &$subject, $params=null )[/PHP]
+ If you are using the ja tabs module, please open modulesmod_jatabshelper.php file, at about line 126, find following code section:
[PHP]if (class_exists(‘plgContentJA_tabs’)) {
$plg = new plgContentJA_tabs();
$pparams=array();
$plg->onPrepareContent(&$row, $pparams, 0);
}[/PHP]
and change to:
[PHP]if (class_exists(‘plgContentJA_tabs’)) {
$plg = null;
$plg = new plgContentJA_tabs($plg);
$pparams=array();
$plg->onPrepareContent(&$row, $pparams, 0);
}[/PHP]