diff options
author | Jamis Buck <jamis@37signals.com> | 2005-05-30 07:20:37 +0000 |
---|---|---|
committer | Jamis Buck <jamis@37signals.com> | 2005-05-30 07:20:37 +0000 |
commit | 00db6f0faae6d53b7190981561beb6da0450359b (patch) | |
tree | 8428ee63213a011a077f9e49c1577c3e07f41cbc /actionpack/CHANGELOG | |
parent | b6c13f2d70eaa02f264281f34b518b4e9a6d41c6 (diff) | |
download | rails-00db6f0faae6d53b7190981561beb6da0450359b.tar.gz rails-00db6f0faae6d53b7190981561beb6da0450359b.tar.bz2 rails-00db6f0faae6d53b7190981561beb6da0450359b.zip |
render(:partial => "...") uses an empty hash for the local assigns #1365. render(:partial => true) is identical to the older render_partial()
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1366 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r-- | actionpack/CHANGELOG | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index 424847e8cf..712f4b4589 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,11 @@ *SVN* +* render(:partial => true) is identical to the behavior of the deprecated render_partial() + +* Fixed render(:partial => "...") to use an empty Hash for the local assigns #1365 + +* Fixed Caching::Fragments::FileStore.delete to not raise an exception if the delete fails. + * Deprecated all render_* methods in favor of consolidating all rendering behavior in Base#render(options). This enables more natural use of combining options, such as layouts. Examples: +---------------------------------------------------------------+-------------------------------------------------------+ @@ -1574,4 +1580,4 @@ *0.7.5* -* First public release
\ No newline at end of file +* First public release |