diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2009-01-01 18:12:49 +0100 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2009-01-01 18:12:49 +0100 |
commit | 49a055dff639164435dfb71bf18d695970eedac9 (patch) | |
tree | 3c20c4efad47cad949d6d2ef5c236bdd502bf1dc /actionpack/CHANGELOG | |
parent | 3b92b141fd0759476690a174d5e2f8f0f2d9f1b7 (diff) | |
download | rails-49a055dff639164435dfb71bf18d695970eedac9.tar.gz rails-49a055dff639164435dfb71bf18d695970eedac9.tar.bz2 rails-49a055dff639164435dfb71bf18d695970eedac9.zip |
Fixed the AssetTagHelper cache to use the computed asset host as part of the cache key instead of just assuming the its a string [#1299 state:committed]
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r-- | actionpack/CHANGELOG | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index a8abf48441..44790605b2 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,7 @@ *2.3.0 [Edge]* +* Fixed the AssetTagHelper cache to use the computed asset host as part of the cache key instead of just assuming the its a string #1299 [DHH] + * Make ActionController#render(string) work as a shortcut for render :file/:template/:action => string. [#1435] [Pratik Naik] Examples: # Instead of render(:action => 'other_action') |