mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 17:46:05 -05:00
Fix my prev_page code, thanks to riking
This commit is contained in:
parent
730c7fbfda
commit
9f4171e487
2 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@
|
|||
|
||||
|
||||
<p>
|
||||
<% if @topic_view.posts.length > 0 && @topic_view.prev_page %>
|
||||
<% if @topic_view.prev_page %>
|
||||
<%= link_to t(:prev_page), @topic_view.prev_page_path, rel: 'prev' %>
|
||||
<% end %>
|
||||
<% if @topic_view.next_page %>
|
||||
|
|
|
@ -60,7 +60,7 @@ class TopicView
|
|||
end
|
||||
|
||||
def prev_page
|
||||
if @page && @page > 1
|
||||
if @page && @page > 1 && posts.length > 0
|
||||
@page - 1
|
||||
else
|
||||
nil
|
||||
|
|
Loading…
Reference in a new issue