aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-09-06 03:38:11 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-09-06 03:38:11 +0000
commit83313fccc04f659b766a8f5e8bcf4a5cb67a8b2a (patch)
treebd0914f470b7575025441d5ab571c82a2459234e /actionpack/CHANGELOG
parent8c9ce617c9989c74209235f68ba4497b905234fd (diff)
downloadrails-83313fccc04f659b766a8f5e8bcf4a5cb67a8b2a.tar.gz
rails-83313fccc04f659b766a8f5e8bcf4a5cb67a8b2a.tar.bz2
rails-83313fccc04f659b766a8f5e8bcf4a5cb67a8b2a.zip
Backed out of locals hash as it caused trouble with Builder, see ticket for more
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5043 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG11
1 files changed, 0 insertions, 11 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index dfe6993714..f1a8b581cd 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -23,17 +23,6 @@
* Deprecated the auto-appending of .png to AssetTagHelper#image_tag calls that doesn't have an extension [DHH]
-* Added locals hash to partials, which makes for convenient access of some times available/some times not variables #5491 [wbruce@gmail.com]. Example:
-
- # two different render calls
- render :partial => "person", :locals => { :include_overview => true }
- render :partial => "person"
-
- # view
- <% if locals[:include_overview] %>
- Show overview
- <% end %>
-
* Fixed FormOptionsHelper#select to respect :selected value #5813
* Fixed TextHelper#simple_format to deal with multiple single returns within a single paragraph #5835 [moriq@moriq.com]