diff --git a/app/views/catalog/index.rhtml b/app/views/catalog/index.rhtml index 269ec26..207bb68 100644 --- a/app/views/catalog/index.rhtml +++ b/app/views/catalog/index.rhtml @@ -1,3 +1,3 @@ <%= display_products_list @profile, @products %> -<%= will_paginate @products %> +<%= pagination_links @products %> diff --git a/app/views/content_viewer/image_gallery.rhtml b/app/views/content_viewer/image_gallery.rhtml index 7233b3e..585adbd 100644 --- a/app/views/content_viewer/image_gallery.rhtml +++ b/app/views/content_viewer/image_gallery.rhtml @@ -16,5 +16,5 @@ <% end %>
- <%= will_paginate @images, :param_name => 'npage' %> + <%= pagination_links @images, :param_name => 'npage' %> diff --git a/app/views/manage_products/index.rhtml b/app/views/manage_products/index.rhtml index 3613810..16ae385 100644 --- a/app/views/manage_products/index.rhtml +++ b/app/views/manage_products/index.rhtml @@ -22,7 +22,7 @@ <% end %> -<%= will_paginate @products %> +<%= pagination_links @products %> <% button_bar do %> <%= button :add, _('New product or service'), :action => 'new' %> diff --git a/app/views/search/products.rhtml b/app/views/search/products.rhtml index 2fa7088..0a8e66f 100644 --- a/app/views/search/products.rhtml +++ b/app/views/search/products.rhtml @@ -23,6 +23,6 @@ <% end %> -<%= will_paginate @results[:products] %> +<%= pagination_links @results[:products] %>
-- libgit2 0.21.2