After updating to Matukio 5.2.4, our (template override) event list page showed errors. The only code that got rendered was this:
<!-- Start Matukio by compojoom.com -->
<div id="matukio_holder" class="compojoom-bootstrap">
[...]
<button class="btn btn-default mat_marker_icon" gmaploc="<br />
<b>Catchable fatal error</b>: Object of class stdClass could not be converted to string in <b>[...]/templates/[...]/html/com_matukio/eventlist/bootstrap3.php</b> on line <b>357</b><br />
So the problematic code seemed to be this one:
<button class="btn btn-default mat_marker_icon" gmaploc="<?php echo ($gmaploc); ?>">
<?php echo JText::_("COM_MATUKIO_MAP"); ?>
Commenting out this code was insufficient. However, after entirely deleting this block, the page got fully rendered again. As a result, the "show map" button didn't appear any longer in the event list. On the detail page instead, the Google Map was showing without any problem...
So I guess that "echo ($gmaploc)" isn't used any longer in Matukio 5.2.4. Do we have to replace this code with some other echo event?