1
0
Fork 0
mirror of https://github.com/kaminari/kaminari.git synced 2022-11-09 13:44:37 -05:00
This commit is contained in:
Yuki Nishijima 2012-09-07 14:14:06 +09:00
parent c66ffd13a5
commit 6887c56356

View file

@ -27,7 +27,7 @@ module Kaminari
# This model's max +per_page+ value
# returns +max_per_page+ value unless explicitly overridden via <tt>max_paginates_per</tt>
def max_per_page
@_max_per_page ||= Kaminari.config.max_per_page
@_max_per_page || Kaminari.config.max_per_page
end
end
end