aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-02-17 19:07:02 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-02-17 19:07:02 +0000
commit8151c4e84d3ecad36357dc97a8d8e6b0399fa8d9 (patch)
tree0593e569ddf4ad6908e8bb9b94e7824f4b7ee14a /actionpack/CHANGELOG
parent0aad5abcc8f3893dd0664b0813fa6815f7e43527 (diff)
downloadrails-8151c4e84d3ecad36357dc97a8d8e6b0399fa8d9.tar.gz
rails-8151c4e84d3ecad36357dc97a8d8e6b0399fa8d9.tar.bz2
rails-8151c4e84d3ecad36357dc97a8d8e6b0399fa8d9.zip
Fixed that on validation errors, scaffold couldn't find template #654 [mindel]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@649 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 3453ae96be..087b355416 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Fixed that on validation errors, scaffold couldn't find template #654 [mindel]
+
* Added Base#hide_actions(*names) to hide public methods from a controller that would otherwise have been callable through the URL. For the majority of cases, its preferred just to make the methods you don't want to expose protected or private (so they'll automatically be hidden) -- but if you must have a public method, this is a way to make it uncallable. Base#hidden_actions retrieve the list of all hidden actions for the controller #644 [Nicholas Seckar]
* Fixed that a bunch of methods from ActionController::Base was accessible as actions (callable through a URL) when they shouldn't have been #644 [Nicholas Seckar]