Patch By Tomas Kopal <Tomas.Kopal@altap.cz> r=mkanat, a=myk
if (Param("insidergroup") && !UserInGroup(Param('insidergroup'))) {
$suppjoins = "LEFT JOIN attachments
ON attachments.attach_id = bugs_activity.attach_id";
- $suppwhere = "AND NOT(COALESCE(attachments.isprivate,0))";
+ $suppwhere = "AND COALESCE(attachments.isprivate, 0) = 0";
}
my $query = "
SELECT COALESCE(fielddefs.description, bugs_activity.fieldid),
my $query = "SELECT products.name,
COALESCE(products.description,'') AS description,
- NOT(disallownew) AS status,
+ disallownew = 0 AS status,
votesperuser, maxvotesperbug, votestoconfirm,
COUNT(bug_id) AS bug_count
FROM products";