diff options
author | jocuri%softhome.net <> | 2004-07-03 09:26:28 +0200 |
---|---|---|
committer | jocuri%softhome.net <> | 2004-07-03 09:26:28 +0200 |
commit | 00cc8677e25a98e81d70757cc02991e63ee3b975 (patch) | |
tree | bb065f42db71af22477394a6e1648794096df3c9 /editgroups.cgi | |
parent | 7600babc226dfaad905fb78a978715639b75e48f (diff) | |
download | bugzilla-00cc8677e25a98e81d70757cc02991e63ee3b975.tar.gz bugzilla-00cc8677e25a98e81d70757cc02991e63ee3b975.tar.xz |
Patch for bug 248001: Conversion of boolean conditions in SQL statements for better DB independence; patch by David Lawrence <dkl@redhat.com>; r=joel, vladd; a=justdave.
Diffstat (limited to 'editgroups.cgi')
-rwxr-xr-x | editgroups.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editgroups.cgi b/editgroups.cgi index a0af0be12..4390b5d44 100755 --- a/editgroups.cgi +++ b/editgroups.cgi @@ -274,7 +274,7 @@ if ($action eq 'changeform') { " LEFT JOIN group_group_map as B" . " ON B.member_id = groups.id" . " AND B.grantor_id = $group_id" . - " AND B.isbless" . + " AND B.isbless = 1" . " WHERE groups.id != $group_id ORDER by name"); while (MoreSQLData()) { |