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
2cfad107
Commit
2cfad107
authored
Feb 19, 2005
by
mkanat%kerio.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 254347: Use of uninitialized value msg in query.cgi
Patch By Frederic Buclin <LpSolit@gmail.com>, r=mkanat, a=justdave
parent
31edd119
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
query.cgi
query.cgi
+1
-1
No files found.
query.cgi
View file @
2cfad107
...
...
@@ -443,7 +443,7 @@ if (!($cgi->param('query_format') || $cgi->param('format'))) {
# Set cookie to current format as default, but only if the format
# one that we should remember.
if
(
IsValidQueryType
(
$vars
->
{
'format'
}))
{
if
(
defined
(
$vars
->
{
'format'
})
&&
IsValidQueryType
(
$vars
->
{
'format'
}))
{
$cgi
->
send_cookie
(
-
name
=>
'DEFAULTFORMAT'
,
-
value
=>
$vars
->
{
'format'
},
-
expires
=>
"Fri, 01-Jan-2038 00:00:00 GMT"
);
...
...
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