diff options
author | Michael Gapczynski <GapczynskiM@gmail.com> | 2011-08-12 20:51:01 -0400 |
---|---|---|
committer | Michael Gapczynski <GapczynskiM@gmail.com> | 2011-08-12 20:53:36 -0400 |
commit | 67156f87e3757fbd5e692e7d6b2209cfafc6c3cf (patch) | |
tree | 2bb6677186c7cbb64d62c3507eb38b51d0755930 | |
parent | 98a5e063ac6ac0916050fc22b71dbb81057f5b2f (diff) | |
download | nextcloud-server-67156f87e3757fbd5e692e7d6b2209cfafc6c3cf.tar.gz nextcloud-server-67156f87e3757fbd5e692e7d6b2209cfafc6c3cf.zip |
Add missing parameter to usersInGroup()
-rw-r--r-- | lib/group.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/group.php b/lib/group.php index 65a23989a27..fbff41e30e9 100644 --- a/lib/group.php +++ b/lib/group.php @@ -249,6 +249,6 @@ class OC_Group { * @returns array with user ids */ public static function usersInGroup($gid){ - return self::$_backend->usersInGroup(); + return self::$_backend->usersInGroup($gid); } } |