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
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
6a2a01fb
Commit
6a2a01fb
authored
Jul 15, 2010
by
byron jones (glob)
Committed by
Frédéric Buclin
Jul 15, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 521416: Some web servers fail to set the QUERY_STRING parameter
r/a=mkanat
parent
ed9e593a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
CGI.pm
Bugzilla/CGI.pm
+3
-0
No files found.
Bugzilla/CGI.pm
View file @
6a2a01fb
...
...
@@ -308,6 +308,9 @@ sub param {
if
(
!
scalar
(
@result
)
&&
$self
->
request_method
&&
$self
->
request_method
eq
'POST'
)
{
# Some servers fail to set the QUERY_STRING parameter, which
# causes undef issues
$ENV
{
'QUERY_STRING'
}
=
''
unless
exists
$ENV
{
'QUERY_STRING'
};
@result
=
$self
->
SUPER::
url_param
(
@_
);
}
...
...
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