fix group backend

This commit is contained in:
Robin Appelman 2012-04-16 10:36:21 +02:00
parent b61f6438ba
commit fa97c59f95
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ abstract class OC_Group_Backend {
* @return bool
*/
public function groupExists($gid){
if(!$backend->implementsActions(OC_GROUP_BACKEND_GET_GROUPS)){
if(!$this->implementsActions(OC_GROUP_BACKEND_GET_GROUPS)){
return false;
}
return in_array($gid, $this->getGroups());