• Fabrik4.5.1 for Joomla5.2.4

    Fabrik4.5.1 is out. This update is needed for J!5.2.4

    See Announcements

Fixed Log form plugin + dbjoin multi select

mirceat

Member
Hello,

I cannot get the values from a dbjoin element set as multi select using log form plugin. Works fine for dbjoin element as dropdown or any other fields (works even for repeated groups) but can't make it work for dbjoin as multi select. Tested in every "Mode" possible with any option available in plugin activated, can't get any value in db.

Please help,
Thank you
 
Try
in plugins\fabrik_form\log\log.php
add
$value = is_array($value) ? implode(',',$value) : $value;
before line 733
 
Thank you, works fine now; one more thing about this plugin, in table #__fabrik_change_log_fields, column "user_id" is always 0, shouldn't register the id of the user who submit the form?
 
The userId is stored in the "parent" #__fabrik_change_log (like form id, row id etc), this makes sense.

I think #__fabrik_change_log_fields.user_id is not needed.
 

Members online

No members online now.
Back
Top