summaryrefslogtreecommitdiffstats
path: root/Bugzilla/User.pm
diff options
context:
space:
mode:
authorbugreport%peshkin.net <>2004-08-05 12:18:42 +0200
committerbugreport%peshkin.net <>2004-08-05 12:18:42 +0200
commit1e04722ba31ed01dc11deb94416145ebafdf9d25 (patch)
tree714c22a060e25eeea4052754e812b4978453ebe7 /Bugzilla/User.pm
parentf6c796ad212c7cc62687cd02e3808245a993f6b1 (diff)
downloadbugzilla-1e04722ba31ed01dc11deb94416145ebafdf9d25.tar.gz
bugzilla-1e04722ba31ed01dc11deb94416145ebafdf9d25.tar.xz
Bug 254374: Fix regression in qacontact from bug 186093
Diffstat (limited to 'Bugzilla/User.pm')
-rw-r--r--Bugzilla/User.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm
index 18ff93392..44f9dd3f5 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) );