aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2008-12-26 01:03:18 +0000
committerPratik Naik <pratiknaik@gmail.com>2008-12-26 01:12:11 +0000
commit80307c8b0a889acc7abb7f4e52fd4c02e1063ba8 (patch)
treec4cb570b8f29a63408c3b74f2cbedd383c48d237 /actionpack/CHANGELOG
parentcd1d6e8768ae13b11bc343701037b20ad35e6f1e (diff)
downloadrails-80307c8b0a889acc7abb7f4e52fd4c02e1063ba8.tar.gz
rails-80307c8b0a889acc7abb7f4e52fd4c02e1063ba8.tar.bz2
rails-80307c8b0a889acc7abb7f4e52fd4c02e1063ba8.zip
Make ActionController#render(symbol) behave same as ActionController#render(string) [#1435]
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG1
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 51afa508df..a8abf48441 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -4,6 +4,7 @@
# Instead of render(:action => 'other_action')
render('other_action') # argument has no '/'
+ render(:other_action)
# Instead of render(:template => 'controller/action')
render('controller/action') # argument must not begin with a '/', but contain a '/'