diff --git a/themes/bootstrap3/templates/search/history.phtml b/themes/bootstrap3/templates/search/history.phtml index 04874808ab5df41caf5b83551951e41a5c33342c..efec1177841711b2ac190dab5c52e034e135243a 100644 --- a/themes/bootstrap3/templates/search/history.phtml +++ b/themes/bootstrap3/templates/search/history.phtml @@ -17,6 +17,7 @@ <h2><?=$this->transEsc("history_recent_searches")?></h2> <? if (!empty($this->unsaved)): ?> <?=$this->context()->renderInContext('search/history-table.phtml', array('showSaved' => false));?> + <a href="?purge=true"><i class="fa fa-remove"></i> <?=$this->transEsc("history_purge")?></a> <? else: ?> <?=$this->transEsc("history_no_searches")?> <? endif; ?> diff --git a/themes/bootstrap3/templates/search/results.phtml b/themes/bootstrap3/templates/search/results.phtml index c4ecdcb6155517fd84b20d210942544906c82186..cf28b767f6b89eaf2be847f1ce917112c81d8c18 100644 --- a/themes/bootstrap3/templates/search/results.phtml +++ b/themes/bootstrap3/templates/search/results.phtml @@ -115,9 +115,9 @@ — <? if (is_numeric($this->results->getSearchId())): ?> <? if ($this->results->isSavedSearch()): ?> - <i class="fa fa-minus-square"></i> <a href="<?=$this->url('myresearch-savesearch')?>?delete=<?=urlencode($this->results->getSearchId())?>"><?=$this->transEsc('save_search_remove')?></a> + <i class="fa fa-remove"></i> <a href="<?=$this->url('myresearch-savesearch')?>?delete=<?=urlencode($this->results->getSearchId())?>"><?=$this->transEsc('save_search_remove')?></a> <? else: ?> - <i class="fa fa-plus-square"></i> <a href="<?=$this->url('myresearch-savesearch')?>?save=<?=urlencode($this->results->getSearchId())?>"><?=$this->transEsc('save_search')?></a> + <i class="fa fa-save"></i> <a href="<?=$this->url('myresearch-savesearch')?>?save=<?=urlencode($this->results->getSearchId())?>"><?=$this->transEsc('save_search')?></a> <? endif; ?> <? endif; ?> <? endif; ?>