I hope that helps explain and that the 'fix' makes sense. If you need clearer instructions on what needs to be modified, let me know. Otherwise, if you can, wait until the v6.0 release in the next few days.The issue is only in JFBConnect v5.2.2. We're releasing v6 next week which will fix the problem. The problem is a PHP error on our part when abstracting out some SQL queries. In the jfbcsystem.php file at line 190 and 198 there are 2 statements that call $db->loadResult(), but the query was never properly set beforehand. To fix, you need to add:
$db->setQuery($query);
Above both those statements.
This is an issue on every site, but JReviews is the only extension others have pointed the problem out on. It seems like in your AJAX requests you are hard-coding error reporting to enabled, which is showing the warning always, even if the Joomla Global Configuration setting is disabled. That seems like incorrect behavior as well as the Global setting would have 'masked' the error (even if that's not a great solution).
Join our newsletter to get alerts for Joomla releases, tips and tricks and extension updates.
