summaryrefslogtreecommitdiffstats
path: root/app/controllers/versions_controller.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2012-03-06 20:31:45 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2012-03-06 20:31:45 +0000
commitfef2e4b67252415fefe54da856db3a77c3143dfe (patch)
tree505c20946af6fca04277a1d616817abd607d6048 /app/controllers/versions_controller.rb
parent1ec2d98c14bd4ba8291c236438f97a30bf2109f3 (diff)
downloadredmine-fef2e4b67252415fefe54da856db3a77c3143dfe.tar.gz
redmine-fef2e4b67252415fefe54da856db3a77c3143dfe.zip
Prevent mass-assignment when adding/updating a version (#10390).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9137 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers/versions_controller.rb')
-rw-r--r--app/controllers/versions_controller.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/app/controllers/versions_controller.rb b/app/controllers/versions_controller.rb
index ddbda38d3..ec9f41e46 100644
--- a/app/controllers/versions_controller.rb
+++ b/app/controllers/versions_controller.rb
@@ -73,7 +73,8 @@ class VersionsController < ApplicationController
end
def new
- @version = @project.versions.build(params[:version])
+ @version = @project.versions.build
+ @version.safe_attributes = params[:version]
respond_to do |format|
format.html
@@ -92,7 +93,7 @@ class VersionsController < ApplicationController
if params[:version]
attributes = params[:version].dup
attributes.delete('sharing') unless attributes.nil? || @version.allowed_sharings.include?(attributes['sharing'])
- @version.attributes = attributes
+ @version.safe_attributes = attributes
end
if request.post?
@@ -136,7 +137,8 @@ class VersionsController < ApplicationController
if request.put? && params[:version]
attributes = params[:version].dup
attributes.delete('sharing') unless @version.allowed_sharings.include?(attributes['sharing'])
- if @version.update_attributes(attributes)
+ @version.safe_attributes = attributes
+ if @version.save
respond_to do |format|
format.html {
flash[:notice] = l(:notice_successful_update)