summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorshugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-11-21 03:30:22 +0000
committershugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-11-21 03:30:22 +0000
commite15f65b004eaa43a013f8d069479c55e70563177 (patch)
treebe781c5c9eeda91ae0c4f4326e3ebbc0889688f7
parent505e295fd6e06bfd01be9d471fde49b33b20057c (diff)
* lib/cgi.rb: CGI#header: do not set Apache.request.status for
Location: if Apache.request.status is already set. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1850 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--lib/cgi.rb4
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 3f485390a0..b725462f13 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Nov 21 12:22:52 2001 Shugo Maeda <shugo@ruby-lang.org>
+
+ * lib/cgi.rb: CGI#header: do not set Apache.request.status for
+ Location: if Apache.request.status is already set.
+
Tue Nov 20 01:07:13 2001 Yukihiro Matsumoto <matz@ruby-lang.org>
* parse.y (str_extend): should not terminate string interpolation
diff --git a/lib/cgi.rb b/lib/cgi.rb
index c86ac32306..84d545f464 100644
--- a/lib/cgi.rb
+++ b/lib/cgi.rb
@@ -505,7 +505,9 @@ status:
when /^content-encoding$/ni
Apache::request.content_encoding = value
when /^location$/ni
- Apache::request.status = 302
+ if Apache::request.status == 200
+ Apache::request.status = 302
+ end
Apache::request.headers_out[name] = value
else
Apache::request.headers_out[name] = value