diff options
author | Nicholas Seckar <nseckar@gmail.com> | 2005-07-14 09:09:39 +0000 |
---|---|---|
committer | Nicholas Seckar <nseckar@gmail.com> | 2005-07-14 09:09:39 +0000 |
commit | 6ed16ff60290620c87772670d312585f2431d03f (patch) | |
tree | 7cef602051d2cb104deedf95e6b1d105e5042caa /actionpack/CHANGELOG | |
parent | 16595c93b294f3fa852993dc3b2ba4b9df253147 (diff) | |
download | rails-6ed16ff60290620c87772670d312585f2431d03f.tar.gz rails-6ed16ff60290620c87772670d312585f2431d03f.tar.bz2 rails-6ed16ff60290620c87772670d312585f2431d03f.zip |
Provide correct defaults for Named Routes which do not specify :action
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1833 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
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 69c968af6e..7b6858ebb1 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Fixed routes so that routes which do not specify :action in the path or in the requirements have a default of :action => 'index', In addition, fixed url generation so that :action => 'index' does not need to be provided for such urls. [Nicholas Seckar, Markjuh] + * Worked around a Safari bug where it wouldn't pass headers through if the response was zero length by having render :nothing return ' ' instead of '' * Fixed Request#subdomains to handle "foo.foo.com" correctly |