Change link text to 'Older'

Updates the link text for previous commits to read 'Older' and not 'Order'.
This commit is contained in:
Mark Derricutt
2013-10-08 11:34:02 +13:00
parent 5a19a307a9
commit 49fbc5cb62

View File

@@ -61,6 +61,6 @@
}
<div class="btn-group">
<button class="btn" onclick="location.href='?page=@{page - 1}'"@if(page <= 1){ disabled="true"}>&lt; Newer</button>
<button class="btn" onclick="location.href='?page=@{page + 1}'"@if(!hasNext){ disabled="true"}>Order &gt;</button>
<button class="btn" onclick="location.href='?page=@{page + 1}'"@if(!hasNext){ disabled="true"}>Older &gt;</button>
</div>
}
}