module WillPaginateHack | |
def self.included(base) | |
base.alias_method_chain :url, :hack | |
end | |
private | |
def url_with_hack(page) | |
if page > 1 | |
url_without_hack(page) | |
else | |
url_without_hack(nil) | |
end | |
end | |
end | |
WillPaginate::ViewHelpers::LinkRenderer.send(:include, WillPaginateHack) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment