aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--lib/cgi.rb7
2 files changed, 11 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 5647e92dc6..c208118b6f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Jan 24 14:58:08 2001 Akinori MUSHA <knu@ruby-lang.org>
+
+ * lib/cgi.rb: fix the problem that when running under mod_ruby
+ header() outputs only one Set-Cookie line.
+
Tue Jan 23 18:51:57 2001 Yukihiro Matsumoto <matz@ruby-lang.org>
* gc.c (rb_gc_call_finalizer_at_exit): should finalize objects in
diff --git a/lib/cgi.rb b/lib/cgi.rb
index 7d27cecd67..7468a2e124 100644
--- a/lib/cgi.rb
+++ b/lib/cgi.rb
@@ -496,8 +496,13 @@ status:
}
if defined?(MOD_RUBY)
+ table = Apache::request.headers_out
buf.scan(/([^:]+): (.+)#{EOL}/n){
- Apache::request[$1] = $2
+ if $1 == 'Set-Cookie'
+ table.add($1, $2)
+ else
+ table.set($1, $2)
+ end
}
Apache::request.send_http_header
''