MINOR Fixed MemberTableField regression from r99706

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@99710 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2010-02-23 04:55:09 +00:00
parent 7e6dfe14f5
commit 9c75acb113

View File

@ -103,9 +103,11 @@ class MemberTableField extends ComplexTableField {
}
if($this->group) {
$groupIDs = array($this->group->ID);
if($this->group->AllChildren()) $groupIDs = array_merge($groupIDs, $this->group->AllChildren()->column('ID'));
$this->sourceFilter[] = sprintf(
'"Group_Members"."GroupID" IN (%s)',
implode(',', array_merge($this->group->AllChildren()->column('ID'), array($this->group->ID)))
implode(',', $groupIDs)
);
}