Making will_paginate to work with acts_as_taggable_on_steriods

After going through, few post on pagination for the tags, this worked for me.

1
2
3
4
<%
 size = Upload.find_tagged_with(params[:id]).length
 @uploads = Upload.paginate_tagged_with(params[:id], :total_entries => size, :page => params[:page], :per_page => 1)
%>