Hi!
Joomla version: 3.9.13
PHP version: 7.2
JEvents version: 3.4.50
Managed Locations version: 3.5.4
On creating or editing an event in the frontend and hitting "Select location", instead of a modal popup with the locations to choose from, the client gets a 404 in the modal popup with error message "0 Cannot assign by reference to overloaded object".
I had this issue in the backend as well and managed to solve it by changing plugins\jevents\jevlocations\jevlocations.php line 598:
$html[] = '<input type="hidden" name="location" id="locn" value="' . $row->location() . '"/>';
to
$html = [];
$html[] = '<input type="hidden" name="location" id="locn" value="' . $row->location() . '"/>';
That works - for the backend.
But in the frontend, the error is still there and my client can not select a location.
What should I do to fix this?
Thanks,
Anja