diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2012-11-22 10:21:48 +0100 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2012-11-22 10:21:48 +0100 |
commit | 208c6fd966dd5f9f387cdd1b4f030a2723144347 (patch) | |
tree | 77fea206f08102b0b46d36fa306d2fc6923b1e12 /lib | |
parent | b76d1afe193fae3bf94aed9a95e270b452e62eb8 (diff) | |
download | nextcloud-server-208c6fd966dd5f9f387cdd1b4f030a2723144347.tar.gz nextcloud-server-208c6fd966dd5f9f387cdd1b4f030a2723144347.zip |
fixing namespace
Diffstat (limited to 'lib')
-rw-r--r-- | lib/files/filesystem.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/files/filesystem.php b/lib/files/filesystem.php index cee3cd883b3..9e8ce3ec184 100644 --- a/lib/files/filesystem.php +++ b/lib/files/filesystem.php @@ -281,7 +281,7 @@ class Filesystem { } } // Load personal mount points - $root = OC_User::getHome($user); + $root = \OC_User::getHome($user); if (is_file($root.'/mount.php')) { $mountConfig = include $root.'/mount.php'; if (isset($mountConfig['user'][$user])) { |