Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • Anonymous Moderator
    #140018

    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]

    jaybird8521 Friend
    #301404

    This works! Many thanks!

Viewing 2 posts - 1 through 2 (of 2 total)

This topic contains 2 replies, has 2 voices, and was last updated by  jaybird8521 15 years, 6 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum