aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-06-14 08:04:49 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-06-14 08:04:49 +0000
commitbca13f727eb7410857059bab38dc58f81dbde321 (patch)
treee9f40cf11e360178a7ff519eecd0709d10f2ec7a /actionpack/CHANGELOG
parent1d9905a67f9bf00867883d3a954df3d4df90eaba (diff)
downloadrails-bca13f727eb7410857059bab38dc58f81dbde321.tar.gz
rails-bca13f727eb7410857059bab38dc58f81dbde321.tar.bz2
rails-bca13f727eb7410857059bab38dc58f81dbde321.zip
Changed test requests to come from 0.0.0.0 instead of 127.0.0.1 such that they don't trigger debugging screens on exceptions, but instead call rescue_action_in_public
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1415 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index e1a62c8713..bea218be68 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Changed test requests to come from 0.0.0.0 instead of 127.0.0.1 such that they don't trigger debugging screens on exceptions, but instead call rescue_action_in_public
+
* Modernize scaffolding to match the generator: use the new render method and change style from the warty @params["id"] to the sleek params[:id]. #1367
* Include :id in the action generated by the form helper method. Then, for example, the controller can do Model.find(params[:id]) for both edit and update actions. Updated scaffolding to take advantage. #1367