Commit 439a070d authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 366738: Use of uninitialized value in numeric eq (==) in ./importxml.pl if…

Bug 366738: Use of uninitialized value in numeric eq (==) in ./importxml.pl if the bug is not visible to the reporter and the CC list - Patch by Fré©ric Buclin <LpSolit@gmail.com> r=myk r=ghendricks a=LpSolit
parent b3e13e1e
......@@ -612,10 +612,10 @@ sub process_bug {
# Bug Access
push( @query, "cclist_accessible" );
push( @values, $bug_fields{'cclist_accessible'} == 1 ? 1 : 0 );
push( @values, $bug_fields{'cclist_accessible'} ? 1 : 0 );
push( @query, "reporter_accessible" );
push( @values, $bug_fields{'reporter_accessible'} == 1 ? 1 : 0 );
push( @values, $bug_fields{'reporter_accessible'} ? 1 : 0 );
# Product and Component if there is no valid default product and
# component defined in the parameters, we wouldn't be here
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment