Hi,
Indeed there is a missing "}" near the line "424".
Thanks to replace:
<?php
if(!empty($this->extra_blocks['products'])) {
foreach($this->extra_blocks['products'] as $r) {
if(is_string($r))
echo $r;
if(is_array($r)) {
if(!isset($r['name']) && isset($r[0]))
$r['name'] = $r[0];
if(!isset($r['value']) && isset($r[1]))
$r['value'] = $r[1];
?>
<tr>
<td class="key"><?php echo JText::_(@$r['name']); ?></td>
<td><?php echo @$r['value']; ?></td>
</tr>
<?php
}
}
?>
By:
<?php
if(!empty($this->extra_blocks['products'])) {
foreach($this->extra_blocks['products'] as $r) {
if(is_string($r))
echo $r;
if(is_array($r)) {
if(!isset($r['name']) && isset($r[0]))
$r['name'] = $r[0];
if(!isset($r['value']) && isset($r[1]))
$r['value'] = $r[1];
?>
<tr>
<td class="key"><?php echo JText::_(@$r['name']); ?></td>
<td><?php echo @$r['value']; ?></td>
</tr>
<?php
}
}
}
?>
We have corrected it on our end.