Bug 186994 - Unable to accept a new bug that has been assigned. Patch by gerv; r=bbaetz, a=justdave.

This commit is contained in:
gerv%gerv.net 2003-02-16 11:59:44 +00:00
Родитель 84d76d1141
Коммит 3f0f6da899
3 изменённых файлов: 14 добавлений и 14 удалений

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

@ -379,9 +379,11 @@ sub user {
|| ($self->{'qa_contact'} && $::userid == $self->{'qa_contact'}{'id'}) || ($self->{'qa_contact'} && $::userid == $self->{'qa_contact'}{'id'})
|| $::userid == $self->{'assigned_to'}{'id'} || $::userid == $self->{'assigned_to'}{'id'}
|| &::UserInGroup("editbugs"); || &::UserInGroup("editbugs");
$self->{'user'}->{'canconfirm'} = ($::userid == 0) $self->{'user'}->{'canconfirm'} = $::userid == 0
|| &::UserInGroup("canconfirm") || ($self->{'qa_contact'} && $::userid == $self->{'qa_contact'}{'id'})
|| &::UserInGroup("editbugs"); || $::userid == $self->{'assigned_to'}{'id'}
|| &::UserInGroup("editbugs")
|| &::UserInGroup("canconfirm");
return $self->{'user'}; return $self->{'user'};
} }

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

@ -379,9 +379,11 @@ sub user {
|| ($self->{'qa_contact'} && $::userid == $self->{'qa_contact'}{'id'}) || ($self->{'qa_contact'} && $::userid == $self->{'qa_contact'}{'id'})
|| $::userid == $self->{'assigned_to'}{'id'} || $::userid == $self->{'assigned_to'}{'id'}
|| &::UserInGroup("editbugs"); || &::UserInGroup("editbugs");
$self->{'user'}->{'canconfirm'} = ($::userid == 0) $self->{'user'}->{'canconfirm'} = $::userid == 0
|| &::UserInGroup("canconfirm") || ($self->{'qa_contact'} && $::userid == $self->{'qa_contact'}{'id'})
|| &::UserInGroup("editbugs"); || $::userid == $self->{'assigned_to'}{'id'}
|| &::UserInGroup("editbugs")
|| &::UserInGroup("canconfirm");
return $self->{'user'}; return $self->{'user'};
} }

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

@ -310,7 +310,9 @@ my $qacontactid;
################################################################################ ################################################################################
# CheckCanChangeField() defines what users are allowed to change what bugs. You # CheckCanChangeField() defines what users are allowed to change what bugs. You
# can add code here for site-specific policy changes, according to the # can add code here for site-specific policy changes, according to the
# instructions given in the Bugzilla Guide and below. # instructions given in the Bugzilla Guide and below. Note that you may also
# have to update the Bug::user() function to give people access to the options
# that they are permitted to change.
# #
# CheckCanChangeField() should return true if the user is allowed to change this # CheckCanChangeField() should return true if the user is allowed to change this
# field, and false if they are not. # field, and false if they are not.
@ -527,13 +529,7 @@ sub DoComma {
} }
sub DoConfirm { sub DoConfirm {
if ($UserInEditGroupSet < 0) { if (CheckCanChangeField("canconfirm", $::FORM{'id'}, 0, 1)) {
$UserInEditGroupSet = UserInGroup("editbugs");
}
if ($UserInCanConfirmGroupSet < 0) {
$UserInCanConfirmGroupSet = UserInGroup("canconfirm");
}
if ($UserInEditGroupSet || $UserInCanConfirmGroupSet) {
DoComma(); DoComma();
$::query .= "everconfirmed = 1"; $::query .= "everconfirmed = 1";
} }