Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ivan Ivlev
bugzilla
Commits
864e9a12
Commit
864e9a12
authored
Sep 24, 2004
by
myk%mozilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for bug 261273: make column changing work with Sun ONE web server; fix by…
Fix for bug 261273: make column changing work with Sun ONE web server; fix by tmabbott@hbs.edu; r,a=justdave
parent
59bc1d80
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
colchange.cgi
colchange.cgi
+5
-2
No files found.
colchange.cgi
View file @
864e9a12
...
...
@@ -112,10 +112,13 @@ if (defined $cgi->param('rememberedquery')) {
# If we're running on Microsoft IIS, using cgi->redirect discards
# the Set-Cookie lines -- workaround is to use the old-fashioned
# redirection mechanism. See bug 214466 for details.
if
(
$ENV
{
'SERVER_SOFTWARE'
}
=~
/Microsoft-IIS/
)
{
if
(
$ENV
{
'SERVER_SOFTWARE'
}
=~
/Microsoft-IIS/
||
$ENV
{
'SERVER_SOFTWARE'
}
=~
/Sun ONE Web/
)
{
print
$cgi
->
header
(
-
type
=>
"text/html"
,
-
refresh
=>
"0; URL=$vars->{'redirect_url'}"
);
}
else
{
}
else
{
print
$cgi
->
redirect
(
$vars
->
{
'redirect_url'
});
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment