Created
July 30, 2009 07:26
-
-
Save vrinek/158605 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# used for paginations (Model.paginate :page => page_from_params) | |
# it just makes the WillPaginate::InvalidPage errors go away | |
def page_from_params | |
(p = params[:page].to_i) > 0 ? p : 1 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment