aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-05-21 18:51:08 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-05-21 18:51:08 +0000
commitdab360e18129c8f4916b78d00d49ed9dda5ccd8a (patch)
tree89b595695571614b5104517b262cbef45839acc3 /activerecord
parent3022ee84ccb4d006f4b27e34b7fcf700aad660c8 (diff)
downloadrails-dab360e18129c8f4916b78d00d49ed9dda5ccd8a.tar.gz
rails-dab360e18129c8f4916b78d00d49ed9dda5ccd8a.tar.bz2
rails-dab360e18129c8f4916b78d00d49ed9dda5ccd8a.zip
Added DoubleRenderError exception that'll be raised if render* is called twice #518 [Nicholas Seckar]. Fixed exceptions occuring after render has been called #1096 [Nicholas Seckar]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1348 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG4
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index 5769b84d14..82c8e5b6df 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,5 +1,9 @@
*SVN*
+* Added DoubleRenderError exception that'll be raised if render* is called twice #518 [Nicholas Seckar]
+
+* Fixed exceptions occuring after render has been called #1096 [Nicholas Seckar]
+
* CHANGED: validates_presence_of now uses Errors#add_on_blank, which will make " " fail the validation where it didn't before #1309
* Added Errors#add_on_blank which works like Errors#add_on_empty, but uses Object#blank? instead