Commit 153a60fc authored by myk%mozilla.org's avatar myk%mozilla.org

Fix for bug 126801: Suppress display of secure products to users who are not…

Fix for bug 126801: Suppress display of secure products to users who are not authorized to access those products. Only matters for installations using the "product groups" feature. Patch by Myk Melez <myk@mozilla.org>. r=justdave,gerv.
parent 03ad2ba8
......@@ -603,6 +603,7 @@ SendSQL("SELECT product,description FROM products ORDER BY product");
while (MoreSQLData()) {
my ($product, $productdesc) = FetchSQLData();
next if (Param("usebuggroups") && GroupExists($product) && !UserInGroup($product));
push (@products, $product);
$line_count++;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment