diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2005-07-03 09:04:52 +0000 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2005-07-03 09:04:52 +0000 |
commit | e24e2c41c20cc93f3b4efd84ebdf212626bbc926 (patch) | |
tree | 67c850010ff99c0de47420cfc866fb5a6deabcda /activerecord | |
parent | df95128e9402feb1fc08b4ac45db73daa2edade3 (diff) | |
download | rails-e24e2c41c20cc93f3b4efd84ebdf212626bbc926.tar.gz rails-e24e2c41c20cc93f3b4efd84ebdf212626bbc926.tar.bz2 rails-e24e2c41c20cc93f3b4efd84ebdf212626bbc926.zip |
Mark ticket # in changelog. Snip some trailing whitespace.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1642 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/CHANGELOG | 2 | ||||
-rwxr-xr-x | activerecord/lib/active_record/callbacks.rb | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index ba7151ccbb..6771e3e9c9 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -4,7 +4,7 @@ * Speed up ActiveRecord#method_missing for the common case (read_attribute). -* Only notify observers on after_find and after_initialize if these methods are defined on the model. [skaes@web.de] +* Only notify observers on after_find and after_initialize if these methods are defined on the model. #1235 [skaes@web.de] * Fixed that single-table inheritance sub-classes couldn't be used to limit the result set with eager loading #1215 [Chris McGrath] diff --git a/activerecord/lib/active_record/callbacks.rb b/activerecord/lib/active_record/callbacks.rb index 629272b639..8e3aac6e36 100755 --- a/activerecord/lib/active_record/callbacks.rb +++ b/activerecord/lib/active_record/callbacks.rb @@ -221,7 +221,7 @@ module ActiveRecord if object.respond_to_without_attributes?(:after_initialize) object.send(:callback, :after_initialize) end - + object end end @@ -344,9 +344,9 @@ module ActiveRecord end return false if result == false end - + send(method) if respond_to_without_attributes?(method) - + return true end |