Fix for bug 180632: corrects reference flag->is_requesteeble to flag->type->is_requesteeble

r=bbaetz
a=myk
This commit is contained in:
myk%mozilla.org 2002-11-17 23:33:54 +00:00
Родитель 5bd233122e
Коммит fca47162ff
1 изменённых файлов: 5 добавлений и 4 удалений

Просмотреть файл

@ -323,10 +323,11 @@ sub modify {
# being requested, otherwise we'll get false positives and think # being requested, otherwise we'll get false positives and think
# the user changed the flag when they didn't. # the user changed the flag when they didn't.
next if next if
$status eq $flag->{'status'} # the flag's status hasn't changed, and $status eq $flag->{'status'} # the flag's status hasn't changed, and:
&& (!$flag->{'is_requesteeble'} # the flag isn't specifically requestable, or && (!$flag->{'type'}->{'is_requesteeble'}
|| $status ne "?" # the flag isn't being requested, or # the flag isn't specifically requestable
|| ($flag->{'requestee'} # the requestee hasn't changed || $status ne "?" # or the flag isn't being requested
|| ($flag->{'requestee'} # or the requestee hasn't changed
&& ($requestee_email eq $flag->{'requestee'}->{'email'}))); && ($requestee_email eq $flag->{'requestee'}->{'email'})));
# Since the status is validated, we know it's safe, but it's still # Since the status is validated, we know it's safe, but it's still