diff options
author | Frank Karlitschek <frank@owncloud.org> | 2012-05-01 18:50:31 +0200 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2012-05-01 18:50:31 +0200 |
commit | 70cea18cce0fcdb4d8118ff2d7abccc922417a6a (patch) | |
tree | 7f8c476cb75b38fea3ed4ad555f00885f6da2670 /apps/remoteStorage/auth.php | |
parent | dc7cdda5ccc7d40bf9865e1af5a7846782ec700b (diff) | |
download | nextcloud-server-70cea18cce0fcdb4d8118ff2d7abccc922417a6a.tar.gz nextcloud-server-70cea18cce0fcdb4d8118ff2d7abccc922417a6a.zip |
ported getUser
Diffstat (limited to 'apps/remoteStorage/auth.php')
-rwxr-xr-x[-rw-r--r--] | apps/remoteStorage/auth.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/remoteStorage/auth.php b/apps/remoteStorage/auth.php index 69d7cfc3b93..682c1e97f6b 100644..100755 --- a/apps/remoteStorage/auth.php +++ b/apps/remoteStorage/auth.php @@ -56,7 +56,7 @@ if(count($pathParts) == 2 && $pathParts[0] == '') { $categories=$v; } } - $currUser = OC_User::getUser(); + $currUser = OCP\USER::getUser(); if($currUser == $ownCloudUser) { if(isset($_POST['allow'])) { //TODO: check if this can be faked by editing the cookie in firebug! |