From f79a49fa3111eba9be6146c1e0739edc0b52c283 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Mon, 22 Sep 2008 16:07:13 +0000 Subject: [PATCH] API CHANGE Deprecated Member::isInGroup() - use Member::inGroup() instead git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@62846 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- code/MemberTableField.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/MemberTableField.php b/code/MemberTableField.php index b4b960a0..8e90894a 100755 --- a/code/MemberTableField.php +++ b/code/MemberTableField.php @@ -278,7 +278,7 @@ class MemberTableField extends ComplexTableField { // To Avoid duplication in the Group_Members table if the ComponentSet.php is not modified just uncomment le line below - //if( ! $record->isInGroup( $data['ctf']['ID'] ) ) + //if( ! $record->inGroup( $data['ctf']['ID'] ) ) $record->Groups()->add( $data['ctf']['ID'] ); $this->sourceItems();