diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2012-10-16 09:46:44 -0700 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2012-10-16 09:46:44 -0700 |
commit | c432c74cd34d4230bfda6fa008f2af9dbc33e523 (patch) | |
tree | 85bb3bc77c1b016f67f488425ca1c2419bde2905 /activerecord/lib | |
parent | 12a038390863e45ea99afaec2a54451167720971 (diff) | |
parent | fb665217723f7c4e9e96bb7658fc3048a1d64379 (diff) | |
download | rails-c432c74cd34d4230bfda6fa008f2af9dbc33e523.tar.gz rails-c432c74cd34d4230bfda6fa008f2af9dbc33e523.tar.bz2 rails-c432c74cd34d4230bfda6fa008f2af9dbc33e523.zip |
Merge pull request #7371 from csmuc/fix_dup_validation_errors
Dup'ed ActiveRecord objects may not share the errors object
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/timestamp.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activerecord/lib/active_record/timestamp.rb b/activerecord/lib/active_record/timestamp.rb index bf95ccb298..dd08a6f4f5 100644 --- a/activerecord/lib/active_record/timestamp.rb +++ b/activerecord/lib/active_record/timestamp.rb @@ -42,6 +42,7 @@ module ActiveRecord def initialize_dup(other) # :nodoc: clear_timestamp_attributes + super end private |