aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorSergey Nartimov <just.lest@gmail.com>2012-03-27 22:55:50 +0300
committerSergey Nartimov <just.lest@gmail.com>2012-03-27 22:55:50 +0300
commitfdcfc7521f0490aed74f372b90ef5e982b0f7e7a (patch)
tree0bb8ddd60a673e0c2da67eeaa3f0a76d0f38c8e8 /activerecord/lib
parentbd8a9701c27b4261e9d8dd84aebbde6ba784ed83 (diff)
downloadrails-fdcfc7521f0490aed74f372b90ef5e982b0f7e7a.tar.gz
rails-fdcfc7521f0490aed74f372b90ef5e982b0f7e7a.tar.bz2
rails-fdcfc7521f0490aed74f372b90ef5e982b0f7e7a.zip
force datetime attributes to be changed
backport ddb5d2f756d9d2655a07791a3b62832efd588474 to 3-2-stable
Diffstat (limited to 'activerecord/lib')
-rw-r--r--activerecord/lib/active_record/attribute_methods/time_zone_conversion.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activerecord/lib/active_record/attribute_methods/time_zone_conversion.rb b/activerecord/lib/active_record/attribute_methods/time_zone_conversion.rb
index 17cf34cdf6..c9b2edbd8c 100644
--- a/activerecord/lib/active_record/attribute_methods/time_zone_conversion.rb
+++ b/activerecord/lib/active_record/attribute_methods/time_zone_conversion.rb
@@ -43,6 +43,7 @@ module ActiveRecord
end
time = time.in_time_zone rescue nil if time
write_attribute(:#{attr_name}, original_time)
+ #{attr_name}_will_change!
@attributes_cache["#{attr_name}"] = time
end
EOV