зеркало из https://github.com/mozilla/pjs.git
Bug 292423: [BUGZILLA] mozbot fails on "bug XXX" searches if the installation has disabled target_milestone
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=colin
This commit is contained in:
Родитель
7d77faff90
Коммит
9ed061bea1
|
@ -411,8 +411,10 @@ sub GotURI {
|
|||
foreach my $field (keys %fieldMap) {
|
||||
my @arr = $xml_bug->getElementsByTagName($field);
|
||||
if (@arr) {
|
||||
my $str = $arr[0]->getFirstChild->getData();
|
||||
$bug{$fieldMap{$field}} = $str;
|
||||
my $firstChild = $arr[0]->getFirstChild();
|
||||
if (defined $firstChild) {
|
||||
$bug{$fieldMap{$field}} = $firstChild->getData();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче