unknown action with will_paginate
Posted
by merlin
on Stack Overflow
See other posts from Stack Overflow
or by merlin
Published on 2010-03-28T19:42:00Z
Indexed on
2010/03/28
20:23 UTC
Read the original article
Hit count: 283
ruby-on-rails
In my users controller I have this in a method:
@users = User.paginate :page => params[:page], :per_page => 10,
The results are rendered on users/search. The 2nd page link points to users/search?page=2, but it leads to an unknown action error.
© Stack Overflow or respective owner