Changeset 2242
- Timestamp:
- 09/14/05 18:35:31 (3 years ago)
- Files:
-
- trunk/actionpack/CHANGELOG (modified) (1 diff)
- trunk/actionpack/lib/action_controller/cgi_process.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/CHANGELOG
r2230 r2242 1 1 *SVN* 2 3 * Fixed access to "Host" header with requests made by crappy old HTTP/1.0 clients #2124 [Marcel Molina] 2 4 3 5 * Added easy assignment of fragment cache store through use of symbols for included stores (old way still works too) trunk/actionpack/lib/action_controller/cgi_process.rb
r2230 r2242 80 80 81 81 def host 82 env["HTTP_X_FORWARDED_HOST"] || @cgi.host.to_s.split(":").first 82 env["HTTP_X_FORWARDED_HOST"] || @cgi.host.to_s.split(":").first || '' 83 83 end 84 84