From 16718e3e218cf5ad00943cc14e97938e2b3b2ca7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20L=C3=BCtke?= <tobias.luetke@gmail.com> Date: Tue, 10 Jan 2006 22:15:49 +0000 Subject: Fixed that .with_scope imposed create parameters bypass attr_protected git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3393 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/lib/active_record/base.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'activerecord/lib') diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb index 7ba5beb12b..dc3dc2afa6 100755 --- a/activerecord/lib/active_record/base.rb +++ b/activerecord/lib/active_record/base.rb @@ -444,9 +444,10 @@ module ActiveRecord #:nodoc: if attributes.is_a?(Array) attributes.collect { |attr| create(attr) } else - attributes.reverse_merge!(scope(:create)) if scoped?(:create) - object = new(attributes) + if scoped?(:create) + scope(:create).each { |att,value| object.send("#{att}=", value) } + end object.save object end -- cgit v1.2.3