summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing
diff options
context:
space:
mode:
authorMichael Gapczynski <GapczynskiM@gmail.com>2011-08-14 11:44:37 -0400
committerMichael Gapczynski <GapczynskiM@gmail.com>2011-08-14 11:44:37 -0400
commite1473cfe83c649627a7355d55665af44ce1fc936 (patch)
tree66895d1ab190a910c3f2f4cb217940c3d528323b /apps/files_sharing
parent122018889a054e2cc7222ce123edd859fd3511f4 (diff)
downloadnextcloud-server-e1473cfe83c649627a7355d55665af44ce1fc936.tar.gz
nextcloud-server-e1473cfe83c649627a7355d55665af44ce1fc936.zip
Change OC_GROUP to OC_Group
Diffstat (limited to 'apps/files_sharing')
-rw-r--r--apps/files_sharing/ajax/userautocomplete.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/ajax/userautocomplete.php b/apps/files_sharing/ajax/userautocomplete.php
index c6519cc6b50..6da7afb659c 100644
--- a/apps/files_sharing/ajax/userautocomplete.php
+++ b/apps/files_sharing/ajax/userautocomplete.php
@@ -10,7 +10,7 @@ if (!OC_User::isLoggedIn()) {
$users = array();
$ocusers = OC_User::getUsers();
$self = OC_User::getUser();
-$groups = OC_GROUP::getUserGroups($self);
+$groups = OC_Group::getUserGroups($self);
$users[] = "<optgroup label='Users'>";
foreach ($ocusers as $user) {
if ($user != $self) {