Index: openacs-4/packages/acs-kernel/sql/postgresql/groups-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-kernel/sql/postgresql/groups-create.sql,v diff -u -r1.3 -r1.4 --- openacs-4/packages/acs-kernel/sql/postgresql/groups-create.sql 18 Mar 2001 05:22:27 -0000 1.3 +++ openacs-4/packages/acs-kernel/sql/postgresql/groups-create.sql 20 Mar 2001 04:12:10 -0000 1.4 @@ -331,7 +331,7 @@ where component_id = group_contains_p__component_id and group_id = container_id LOOP - if group_contains_p(group_contains_p__group_id, map.group_id) = ''t'' then + if group_contains_p(group_contains_p__group_id, map.group_id, null) = ''t'' then return ''t''; end if; end loop; @@ -342,7 +342,7 @@ and rel_id = group_contains_p__rel_id and group_id = container_id LOOP - if group_contains_p(group_contains_p__group_id, map.group_id) = ''t'' then + if group_contains_p(group_contains_p__group_id, map.group_id, null) = ''t'' then return ''t''; end if; end loop;