diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-01-25 11:48:03 +0100 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-01-25 11:48:03 +0100 |
commit | 4271430e609be252d9b4a69fd7b3590571c14f7c (patch) | |
tree | 2c5c5bf9bf16e17a18488fcea6cc0f7f28e8aad2 /lib/user.php | |
parent | 9bb8e0583995fff244432bc34820127ef8ff6ac6 (diff) | |
download | nextcloud-server-4271430e609be252d9b4a69fd7b3590571c14f7c.tar.gz nextcloud-server-4271430e609be252d9b4a69fd7b3590571c14f7c.zip |
get all display names from users in a given group
Diffstat (limited to 'lib/user.php')
-rw-r--r-- | lib/user.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/user.php b/lib/user.php index f84b4c01df7..4cdf07dc3ff 100644 --- a/lib/user.php +++ b/lib/user.php @@ -460,9 +460,9 @@ class OC_User { /**
* @brief Get a list of all users display name
- * @returns associative array with all display names and corresponding uids
+ * @returns associative array with all display names (key) and corresponding uids (value)
*
- * Get a list of all users.
+ * Get a list of all display names and user ids.
*/
public static function getDisplayNames($search = '', $limit = null, $offset = null) {
$displayNames = array();
|