Skip to content
Snippets Groups Projects
Commit 0714e83a authored by Robin Appelman's avatar Robin Appelman
Browse files

fix creating groups

parent 68e76662
No related branches found
No related tags found
No related merge requests found
......@@ -56,7 +56,7 @@ class OC_Group_Database extends OC_Group_Backend {
$query = OC_DB::prepare( "SELECT gid FROM `*PREFIX*groups` WHERE gid = ?" );
$result = $query->execute( array( $gid ));
if( !$result->fetchRow() ){
if( $result->fetchRow() ){
// Can not add an existing group
return false;
}
......@@ -101,7 +101,7 @@ class OC_Group_Database extends OC_Group_Backend {
$query = OC_DB::prepare( "SELECT uid FROM `*PREFIX*group_user` WHERE gid = ? AND uid = ?" );
$result = $query->execute( array( $gid, $uid ));
return $result->numRows() > 0 ? true : false;
return $result->fetchRow() ? true : false;
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment