Guest User

Untitled

a guest
Feb 19th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. # action in the controller
  2. def search_title
  3. suchbegriff = '%' + request.raw_post + '%'
  4. @weblog_pages, @weblogs = paginate :weblogs,
  5. :per_page => 10,
  6. :order => 'id desc',
  7. :conditions => ["title like ?", suchbegriff]
  8. render :partial => "list", :layout => false
  9. end
Add Comment
Please, Sign In to add comment