diff options
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/Files/View.php | 2 | ||||
-rw-r--r-- | lib/private/Share/Share.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Files/View.php b/lib/private/Files/View.php index 2223858b7a9..a59f735c102 100644 --- a/lib/private/Files/View.php +++ b/lib/private/Files/View.php @@ -2171,7 +2171,7 @@ class View { throw new NotFoundException($this->getAbsolutePath($filename) . ' not found'); } $uid = $info->getOwner()->getUID(); - if ($uid != \OCP\User::getUser()) { + if ($uid != \OC_User::getUser()) { Filesystem::initMountPoints($uid); $ownerView = new View('/' . $uid . '/files'); try { diff --git a/lib/private/Share/Share.php b/lib/private/Share/Share.php index 2d0d4f1cf87..703bc282972 100644 --- a/lib/private/Share/Share.php +++ b/lib/private/Share/Share.php @@ -614,7 +614,7 @@ class Share extends Constants { } // group items if we are looking for items shared with the current user - if (isset($shareWith) && $shareWith === \OCP\User::getUser()) { + if (isset($shareWith) && $shareWith === \OC_User::getUser()) { $items = self::groupItems($items, $itemType); } |