summaryrefslogtreecommitdiffstats
path: root/queryhelp.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'queryhelp.cgi')
-rwxr-xr-xqueryhelp.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/queryhelp.cgi b/queryhelp.cgi
index bfd7c0f69..eb9893bd8 100755
--- a/queryhelp.cgi
+++ b/queryhelp.cgi
@@ -663,7 +663,7 @@ SendSQL("SELECT name, description FROM products ORDER BY name");
while (MoreSQLData()) {
my ($product, $productdesc) = FetchSQLData();
- next if (Param("usebuggroups") && GroupExists($product) && !UserInGroup($product));
+ next if (!CanEnterProduct($product));
push (@products, $product);
$line_count++;