Skip to content

Commit

Permalink
Update default_results.php
Browse files Browse the repository at this point in the history
there was a bug.
  • Loading branch information
diddipoeler committed Jul 11, 2017
1 parent 7abd3ea commit 35d1e86
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions components/com_search/views/search/tmpl/default_results.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,16 @@
<?php echo $this->pagination->limitstart + $result->count.'. ';?>
<?php if ($result->href) :?>
<a href="<?php echo JRoute::_($result->href); ?>"<?php if ($result->browsernav == 1) :?> target="_blank"<?php endif;?>>
<?php echo $this->escape($result->title);?>
<?php
//echo $this->escape($result->title);
echo $result->title;
?>
</a>
<?php else:?>
<?php echo $this->escape($result->title);?>
<?php
//echo $this->escape($result->title);
echo $result->title;
?>
<?php endif; ?>
</dt>
<?php if ($result->section) : ?>
Expand Down

0 comments on commit 35d1e86

Please sign in to comment.