Skip to content

Commit

Permalink
Typo in pagination URLs for #45
Browse files Browse the repository at this point in the history
  • Loading branch information
rhukster committed Sep 4, 2014
1 parent d166ab0 commit 6638b6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/pagination.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<ul class="pagination">
{% if pagination.hasPrev %}
<li><a href="{{ base_url }}{{ pagination.prev_url }}">&laquo;</a></li>
<li><a href="{{ base_url }}{{ pagination.prevUrl }}">&laquo;</a></li>
{% else %}
<li><span>&laquo;</span></li>
{% endif %}
Expand All @@ -17,7 +17,7 @@

{% endfor %}
{% if pagination.hasNext %}
<li><a href="{{ base_url }}{{ pagination.next_url }}">&raquo;</a></li>
<li><a href="{{ base_url }}{{ pagination.nextUrl }}">&raquo;</a></li>
{% else %}
<li><span>&raquo;</span></li>
{% endif %}
Expand Down

0 comments on commit 6638b6b

Please sign in to comment.