Merge pull request #2003 from velesin/posts_controller_instance_vars_fix

Removes unnecessary instance vars.
This commit is contained in:
Robin Ward 2014-02-24 12:17:13 -05:00
commit d727915fd4
1 changed files with 4 additions and 4 deletions

View File

@ -113,13 +113,13 @@ class PostsController < ApplicationController
end end
def show def show
@post = find_post_from_params post = find_post_from_params
display_post(@post) display_post(post)
end end
def by_number def by_number
@post = find_post_from_params_by_number post = find_post_from_params_by_number
display_post(@post) display_post(post)
end end
def reply_history def reply_history