Commit 7621e455 authored by Thorsten Schöning's avatar Thorsten Schöning Committed by Frédéric Buclin

Bug 1250908: "Use of uninitialized value" warning thrown when creating a new bug…

Bug 1250908: "Use of uninitialized value" warning thrown when creating a new bug depending or blocking another one r=LpSolit a=dkl
parent eb323eb6
...@@ -169,8 +169,8 @@ sub Send { ...@@ -169,8 +169,8 @@ sub Send {
} }
if ($change->{field_name} eq 'dependson' || $change->{field_name} eq 'blocked') { if ($change->{field_name} eq 'dependson' || $change->{field_name} eq 'blocked') {
push @referenced_bug_ids, split(/[\s,]+/, $change->{old}); push @referenced_bug_ids, split(/[\s,]+/, $change->{old} // '');
push @referenced_bug_ids, split(/[\s,]+/, $change->{new}); push @referenced_bug_ids, split(/[\s,]+/, $change->{new} // '');
} }
} }
......
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