Refuse bogus page params with will_paginate and Sinatra

Language: Ruby

# Invalid page numbers (e.g. "abc" or "0") will redirect to the home page
# You might also consider serving a 404

before do
  redirect '/', 302 if params[:page] && params[:page].to_i == 0 # refuse bogus page #s
end
Reveal More
Added about 2 years ago by Costco_normal trevorturk