mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-26 13:45:13 -07:00
fixed a bug with mock paginate tag
This commit is contained in:
@@ -41,4 +41,5 @@ end
|
||||
|
||||
if __FILE__ == $0
|
||||
p Database.tables['collections']['frontpage'].keys
|
||||
#p Database.tables['blog']['articles']
|
||||
end
|
||||
@@ -37,7 +37,7 @@ class Paginate < Liquid::Block
|
||||
|
||||
context['paginate'] = pagination
|
||||
|
||||
collection_size = context[@collection_name].size
|
||||
collection_size = context[@collection_name].size
|
||||
|
||||
raise ArgumentError.new("Cannot paginate array '#{@collection_name}'. Not found.") if collection_size.nil?
|
||||
|
||||
@@ -88,6 +88,6 @@ class Paginate < Liquid::Block
|
||||
end
|
||||
|
||||
def current_url
|
||||
"/collections/#{frontpage}"
|
||||
"/collections/frontpage"
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user