aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorJamis Buck <jamis@37signals.com>2005-06-15 13:20:17 +0000
committerJamis Buck <jamis@37signals.com>2005-06-15 13:20:17 +0000
commit14c378cc7fd364ea5d96e13746345a29341cd845 (patch)
tree6b302c43fec40f5ca9a3f72e75b411338eaec53a /actionpack/CHANGELOG
parent280c224b43f8a8d42ebfbe104e94d3895972856d (diff)
downloadrails-14c378cc7fd364ea5d96e13746345a29341cd845.tar.gz
rails-14c378cc7fd364ea5d96e13746345a29341cd845.tar.bz2
rails-14c378cc7fd364ea5d96e13746345a29341cd845.zip
render(:template) applies a layout by default. render("foo/bar") works with a layout again.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1424 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG4
1 files changed, 3 insertions, 1 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index b965822efc..e6c7f58098 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* render("foo/bar") works with a layout again
+
* Fixed double-singularization on scaffolded pagination call (Address would be turned into Addres) #1216, #1404 [nilsga]
* Removed the require hack used by functional testing to work around an earlier bug in rake.
@@ -24,7 +26,7 @@
* Make sure the benchmarking render method always returns the output of the render.
-* render(:action) and render() are the only two calls that default to using a layout. All other render calls assume :layout => false. This also fixes send_file, which was applying a layout if one existed for the current action.
+* render(:action), render(:template) and render() are the only three calls that default to using a layout. All other render calls assume :layout => false. This also fixes send_file, which was applying a layout if one existed for the current action.
* verify with :redirect_to won't redirect if a redirect or render has already been performed #1350