mirror of
https://github.com/discourse/discourse.git
synced 2025-03-23 13:55:40 +08:00
Fix my prev_page code, thanks to riking
This commit is contained in:
parent
730c7fbfda
commit
9f4171e487
@ -21,7 +21,7 @@
|
|||||||
|
|
||||||
|
|
||||||
<p>
|
<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' %>
|
<%= link_to t(:prev_page), @topic_view.prev_page_path, rel: 'prev' %>
|
||||||
<% end %>
|
<% end %>
|
||||||
<% if @topic_view.next_page %>
|
<% if @topic_view.next_page %>
|
||||||
|
@ -60,7 +60,7 @@ class TopicView
|
|||||||
end
|
end
|
||||||
|
|
||||||
def prev_page
|
def prev_page
|
||||||
if @page && @page > 1
|
if @page && @page > 1 && posts.length > 0
|
||||||
@page - 1
|
@page - 1
|
||||||
else
|
else
|
||||||
nil
|
nil
|
||||||
|
Loading…
x
Reference in New Issue
Block a user