mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 13:13:39 +08:00
Merge pull request #2003 from velesin/posts_controller_instance_vars_fix
Removes unnecessary instance vars.
This commit is contained in:
commit
d727915fd4
|
@ -113,13 +113,13 @@ class PostsController < ApplicationController
|
|||
end
|
||||
|
||||
def show
|
||||
@post = find_post_from_params
|
||||
display_post(@post)
|
||||
post = find_post_from_params
|
||||
display_post(post)
|
||||
end
|
||||
|
||||
def by_number
|
||||
@post = find_post_from_params_by_number
|
||||
display_post(@post)
|
||||
post = find_post_from_params_by_number
|
||||
display_post(post)
|
||||
end
|
||||
|
||||
def reply_history
|
||||
|
|
Loading…
Reference in New Issue
Block a user