Bug fixes home link enable disable

This commit is contained in:
Diego Najar 2017-10-23 22:13:58 +02:00
commit 2db7071468
2 changed files with 4 additions and 4 deletions

View File

@ -39,7 +39,7 @@
<div class="clearfix">
<?php
if(Paginator::showPrev()) {
echo '<a class="btn btn-secondary float-left" href="'.Paginator::prevPageUrl().'">&larr; '.$Language->get('Previuos page').'</a>';
echo '<a class="btn btn-secondary float-left" href="'.Paginator::prevPageUrl().'">&larr; '.$Language->get('Previous page').'</a>';
}
if(Paginator::showNext()) {
@ -52,4 +52,4 @@
</div>
</div>
<hr>
<hr>

View File

@ -29,7 +29,7 @@
}
if (Paginator::showNext()) {
echo '<li><a href="'.Paginator::nextPageUrl().'">'.$L->get('Previuos').'</a></li>';
echo '<li><a href="'.Paginator::nextPageUrl().'">'.$L->get('Previous').'</a></li>';
}
?>
</ul>
</ul>