aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2004-12-22 13:27:20 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2004-12-22 13:27:20 +0000
commit91eaeb280385d8423d8ec6f7097c9e1a19deb131 (patch)
treef0d480f04f6c49e5be285e6fb21ead12205b9df1 /activerecord/CHANGELOG
parent78c6de9daf7970ae40d50899ee0ceb67c0297a94 (diff)
downloadrails-91eaeb280385d8423d8ec6f7097c9e1a19deb131.tar.gz
rails-91eaeb280385d8423d8ec6f7097c9e1a19deb131.tar.bz2
rails-91eaeb280385d8423d8ec6f7097c9e1a19deb131.zip
Fixed that overriding an attribute's accessor would be disregarded by add_on_empty and add_on_boundary_breaking because they simply used the attributes[] hash instead of checking for @base.respond_to?(attr.to_s). [Marten]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@247 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/CHANGELOG')
-rw-r--r--activerecord/CHANGELOG3
1 files changed, 3 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index 5f0b4242d8..6c8d3c5211 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,5 +1,8 @@
*SVN*
+* Fixed that overriding an attribute's accessor would be disregarded by add_on_empty and add_on_boundary_breaking because they simply used
+ the attributes[] hash instead of checking for @base.respond_to?(attr.to_s). [Marten]
+
* Fixed that Base.table_name would expect a parameter when used in has_and_belongs_to_many joins [Anna Lissa Cruz]
* Fixed that nested transactions now work by letting the outer most transaction have the responsibilty of starting and rolling back the transaction.