Skip to content

Commit

Permalink
com_search
Browse files Browse the repository at this point in the history
  • Loading branch information
brianteeman committed Jul 17, 2018
1 parent 5bf26fa commit 42ad3c2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions administrator/components/com_search/tmpl/searches/default.php
Expand Up @@ -32,13 +32,13 @@
<table class="table">
<thead>
<tr>
<th class="nowrap">
<th scope="col" class="nowrap">
<?php echo HTMLHelper::_('searchtools.sort', 'COM_SEARCH_HEADING_PHRASE', 'a.search_term', $listDirn, $listOrder); ?>
</th>
<th style="width:15%" class="nowrap">
<th scope="col" style="width:15%" class="nowrap">
<?php echo HTMLHelper::_('searchtools.sort', 'JGLOBAL_HITS', 'a.hits', $listDirn, $listOrder); ?>
</th>
<th style="width:1%" class="nowrap text-center">
<th scope="col" style="width:1%" class="nowrap text-center">
<?php echo Text::_('COM_SEARCH_HEADING_RESULTS'); ?>
</th>
</tr>
Expand All @@ -53,9 +53,9 @@
<tbody>
<?php foreach ($this->items as $i => $item) : ?>
<tr class="row<?php echo $i % 2; ?>">
<td class="break-word">
<th scope="row" class="break-word">
<?php echo $this->escape($item->search_term); ?>
</td>
</th>
<td>
<?php echo (int) $item->hits; ?>
</td>
Expand Down

0 comments on commit 42ad3c2

Please sign in to comment.