Remove an extra ) (#284)

I have a site which provided me with an error 500 code. On looking in the server logs it pointed to an extra ) on row 33 which is now on row 34 in the staging version.

Testing:
Code Review 
Check it still shows correctly.
This commit is contained in:
Twincarb 2016-12-04 14:39:38 +00:00 committed by Chris Davenport
parent bb4b0bfb46
commit ba775ea531
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ defined('_JEXEC') or die;
<div class="span<?php echo (12 / $cols); ?>">
<?php endif; ?>
<?php if ($params->get('groupby_showtitle', 1)) : ?>
<h4><?php echo htmlspecialchars($cat['title'], ENT_COMPAT, 'UTF-8')); ?></h4>
<h4><?php echo htmlspecialchars($cat['title'], ENT_COMPAT, 'UTF-8'); ?></h4>
<?php endif; ?>
<ul class="weblinks<?php echo $moduleclass_sfx; ?>">
<?php foreach ($items as $item) : ?>