summaryrefslogtreecommitdiffstats
path: root/app/controllers/comments_controller.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2012-03-06 18:48:47 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2012-03-06 18:48:47 +0000
commitbdf6e90f055ae09b7129e73ec062e3e020f01467 (patch)
treebd5f68a6218c848bec72c92699399e72bd713dd1 /app/controllers/comments_controller.rb
parent6aad82e524c1b2cc8afc3299e129b239f834105b (diff)
downloadredmine-bdf6e90f055ae09b7129e73ec062e3e020f01467.tar.gz
redmine-bdf6e90f055ae09b7129e73ec062e3e020f01467.zip
Prevent mass-assignment when adding a news comment (#10390).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9129 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers/comments_controller.rb')
-rw-r--r--app/controllers/comments_controller.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/controllers/comments_controller.rb b/app/controllers/comments_controller.rb
index 3a27b973a..ca9aa1a86 100644
--- a/app/controllers/comments_controller.rb
+++ b/app/controllers/comments_controller.rb
@@ -25,7 +25,8 @@ class CommentsController < ApplicationController
def create
raise Unauthorized unless @news.commentable?
- @comment = Comment.new(params[:comment])
+ @comment = Comment.new
+ @comment.safe_attributes = params[:comment]
@comment.author = User.current
if @news.comments << @comment
flash[:notice] = l(:label_comment_added)