Guest User

Untitled

a guest
Feb 20th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. def show(day, month, year, title)
  2. @post = Post.first(:conditions => ['day = ? AND month = ? AND year = ? AND title LIKE ?', day, month, year, "#{title}%"])
  3. raise NotFound unless @post
  4. @comments = @post.comments
  5. display @post
  6. end
Add Comment
Please, Sign In to add comment