Skip to content
Snippets Groups Projects
Commit bea79c11 authored by Jason Cooper's avatar Jason Cooper Committed by Demian Katz
Browse files

Added `search-query-time` span so that the query time field in results can be...

Added `search-query-time` span so that the query time field in results can be targetted by CSS. (#1059)
parent 9227414f
No related merge requests found
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
<? endif; ?> <? endif; ?>
<? $this->layout()->srmessage = $showingResults; ?> <? $this->layout()->srmessage = $showingResults; ?>
<? if ($qtime = $this->results->getQuerySpeed()): ?> <? if ($qtime = $this->results->getQuerySpeed()): ?>
<?=$showingResults; ?>, <?=$this->transEsc('query time')?>: <?=$this->localizedNumber($qtime, 2).$this->transEsc('seconds_abbrev')?> <?=$showingResults; ?><span class="search-query-time">, <?=$this->transEsc('query time')?>: <?=$this->localizedNumber($qtime, 2).$this->transEsc('seconds_abbrev')?></span>
<? else: ?> <? else: ?>
<?=$showingResults; ?> <?=$showingResults; ?>
<? endif; ?> <? endif; ?>
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment