diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-09-18 13:34:29 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-09-18 13:35:27 +0200 |
commit | 0714e83a8e9f6c793822b02b870686294b949763 (patch) | |
tree | f8d88e55e3339acc9bbf55decc7e724acb83bca2 /lib/group | |
parent | 68e7666293f65670242c76f8fa269c88f7fdc267 (diff) | |
download | nextcloud-server-0714e83a8e9f6c793822b02b870686294b949763.tar.gz nextcloud-server-0714e83a8e9f6c793822b02b870686294b949763.zip |
fix creating groups
Diffstat (limited to 'lib/group')
-rw-r--r-- | lib/group/database.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/group/database.php b/lib/group/database.php index 7bf9c8bb5ce..f35f61434f0 100644 --- a/lib/group/database.php +++ b/lib/group/database.php @@ -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; } /** |