Skip to content
Snippets Groups Projects
Commit fff80805 authored by Demian Katz's avatar Demian Katz
Browse files

Fix inconsistent string.

parent 6c76c4f7
Branches
Tags
No related merge requests found
...@@ -4,10 +4,10 @@ ...@@ -4,10 +4,10 @@
<li<? if (isset($this->previous)): ?>> <li<? if (isset($this->previous)): ?>>
<? $newParams = $this->params; $newParams['page'] = $this->previous; ?> <? $newParams = $this->params; $newParams['page'] = $this->previous; ?>
<a href="<?= $this->currentPath() . '?' . http_build_query($newParams); ?>"> <a href="<?= $this->currentPath() . '?' . http_build_query($newParams); ?>">
&laquo; <?=$this->translate('Previous')?> &laquo; <?=$this->translate('Prev')?>
</a> </a>
<? else: ?> <? else: ?>
class="disabled"> <span>&laquo; <?=$this->translate('Previous')?></span> class="disabled"> <span>&laquo; <?=$this->translate('Prev')?></span>
<? endif; ?> <? endif; ?>
</li> </li>
......
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