summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--extensions/ExternalBugs/lib/Type.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/ExternalBugs/lib/Type.pm b/extensions/ExternalBugs/lib/Type.pm
index d48c62be1..37df88c61 100644
--- a/extensions/ExternalBugs/lib/Type.pm
+++ b/extensions/ExternalBugs/lib/Type.pm
@@ -164,7 +164,7 @@ id IN (
SELECT DISTINCT id
FROM external_bugzilla b
LEFT JOIN ext_bz_group_map m ON (m.ext_bz_id = b.id)
- WHERE m.group_id IS NULL OR m.group_id IN ($group_list)
+ WHERE always_private = 0 OR m.group_id IS NULL OR m.group_id IN ($group_list)
)";
}