summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Bug.pm
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2012-03-28 00:27:41 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2012-03-28 00:27:41 +0200
commit1bf8f17334f366cb01d608c7ae6852202b8fe657 (patch)
tree980ed6d306ebf6969570c6e801dd672a24a3778a /Bugzilla/Bug.pm
parentdf8c194ac852a04b5d2671b05a29114ce03ac0d2 (diff)
downloadbugzilla-1bf8f17334f366cb01d608c7ae6852202b8fe657.tar.gz
bugzilla-1bf8f17334f366cb01d608c7ae6852202b8fe657.tar.xz
Bug 425647: get_activity() should use INNER JOIN to join the fielddefs table
r=dkl a=LpSolit
Diffstat (limited to 'Bugzilla/Bug.pm')
-rw-r--r--Bugzilla/Bug.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm
index 151e4ae9b..90211efcf 100644
--- a/Bugzilla/Bug.pm
+++ b/Bugzilla/Bug.pm
@@ -3765,7 +3765,7 @@ sub get_activity {
bugs_activity.comment_id
FROM bugs_activity
$suppjoins
- LEFT JOIN fielddefs
+ INNER JOIN fielddefs
ON bugs_activity.fieldid = fielddefs.id
INNER JOIN profiles
ON profiles.userid = bugs_activity.who