Topic-icon Update 5.2.2 JFBConnect Joomla 3.x

Support Specialist
10 years 4 months ago #40163 by alzander
The next major release is currently planned for mid-February. It's going to be a very big release with a lot of new features and improvements.

If a critical issue comes up before that time, we'd put out a patch release which would roll this fix and any other minor fixes into it.

To fix the issue in this thread, just so anyone has it, is to edit the /administrator/components/com_jfbconnect/models/usermap.php file. Around line 176, you'll see:
if ($filter_network != -1)
                $query->where("um.provider LIKE '%" . $filter_network);
Update that to:
if ($filter_network != -1)
                $query->where("um.provider = " . $this->_db->q($filter_network));
If there's a different issue you're having that you need an update for, just let us know.

Thanks,
Alex
The topic has been locked.
Active Subscriptions:

None
10 years 4 months ago #40172 by OlivierF

alzander wrote: The next major release is currently planned for mid-February. It's going to be a very big release with a lot of new features and improvements.

If a critical issue comes up before that time, we'd put out a patch release which would roll this fix and any other minor fixes into it.

To fix the issue in this thread, just so anyone has it, is to edit the /administrator/components/com_jfbconnect/models/usermap.php file. Around line 176, you'll see:

if ($filter_network != -1)
                $query->where("um.provider LIKE '%" . $filter_network);
Update that to:
if ($filter_network != -1)
                $query->where("um.provider = " . $this->_db->q($filter_network));
If there's a different issue you're having that you need an update for, just let us know.

Thanks,
Alex

It works, thank you.
Regards,
Olivier
The topic has been locked.
Support Specialist
10 years 4 months ago #40180 by alzander
Glad to hear that helped. It's likely we'll actually be putting out an update with this, and a few other fixes, next week. Thanks for the confirmation on the fix, and sorry again for the issue.

Thanks,
Alex
The topic has been locked.