summaryrefslogtreecommitdiffstats
path: root/Bugzilla/User.pm
diff options
context:
space:
mode:
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) );