Skip to content

Commit

Permalink
Correct implode order.
Browse files Browse the repository at this point in the history
  • Loading branch information
SharkyKZ authored Apr 10, 2018
1 parent 9bbc3cd commit dd45283
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ class="inputbox"
<?php if ($this->params->get('show_country_headings') && !empty($item->country)) : ?>
<?php $location[] = $item->country; ?>
<?php endif; ?>
<?php echo implode($location, ', '); ?>
<?php echo implode(', ', $location); ?>
</div>
<div class="span3 col-md-3">
<?php if ($this->params->get('show_telephone_headings') && !empty($item->telephone)) : ?>
Expand Down

0 comments on commit dd45283

Please sign in to comment.