From: bugreport%peshkin.net <> Date: Thu, 5 Aug 2004 10:18:42 +0000 (+0000) Subject: Bug 254374: Fix regression in qacontact from bug 186093 X-Git-Tag: bugzilla-2.19.1~95 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1e04722ba31ed01dc11deb94416145ebafdf9d25;p=thirdparty%2Fbugzilla.git Bug 254374: Fix regression in qacontact from bug 186093 --- diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm index 18ff93392d..44f9dd3f58 100644 --- a/Bugzilla/User.pm +++ b/Bugzilla/User.pm @@ -277,7 +277,7 @@ sub can_see_bug { $isoncclist, $missinggroup) = $sth->fetchrow_array(); $self->{sthCanSeeBug} = $sth; return ( (($reporter == $userid) && $reporter_access) - || (Param('qacontact') && ($qacontact == $userid) && $userid) + || (Param('useqacontact') && ($qacontact == $userid) && $userid) || ($owner == $userid) || ($isoncclist && $cclist_access) || (!$missinggroup) );