diff options
author | wakou <wakou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-05-20 19:56:52 +0000 |
---|---|---|
committer | wakou <wakou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-05-20 19:56:52 +0000 |
commit | 221e3c4c071b0c4938c90a1c1c76c80475e5d8a3 (patch) | |
tree | cb303b191cf5086938a403ef8135783db49d0d33 /lib/cgi-lib.rb | |
parent | dbdd56faf8304da995562ed9939f441e51323504 (diff) |
Tue May 21 04:48:37 2002 Sean Chittenden <[email protected]>
* lib/cgi-lib.rb: Checking for constant MOD_RUBY instead of
environment variable. Remove a mod_ruby warning and use
Apache::request.headers_out[] instead.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2480 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/cgi-lib.rb')
-rw-r--r-- | lib/cgi-lib.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/cgi-lib.rb b/lib/cgi-lib.rb index ffe3fcf367..ab4eef1068 100644 --- a/lib/cgi-lib.rb +++ b/lib/cgi-lib.rb @@ -216,10 +216,10 @@ class CGI < SimpleDelegator # make HTTP header string def CGI::header(*options) - if ENV['MOD_RUBY'] + if defined?(MOD_RUBY) options.each{|option| option.sub(/(.*?): (.*)/){ - Apache::request[$1] = $2 + Apache::request.headers_out[$1] = $2 } } Apache::request.send_http_header |