зеркало из https://github.com/mozilla/gecko-dev.git
Bug 288857: Use of uninitialized value in bitwise and (&) at Bugzilla/User.pm line 984 - Patch by Gervase Markham <gerv@mozilla.org> r=LpSolit a=myk
This commit is contained in:
Родитель
68b636674e
Коммит
aac920c48f
|
@ -1030,8 +1030,8 @@ sub wants_mail {
|
|||
AND relationship = $relationship
|
||||
AND event IN (" . join(",", @$events) . ")
|
||||
LIMIT 1");
|
||||
|
||||
return($wants_mail);
|
||||
|
||||
return defined($wants_mail) ? 1 : 0;
|
||||
}
|
||||
|
||||
sub get_userlist {
|
||||
|
|
Загрузка…
Ссылка в новой задаче