summaryrefslogtreecommitdiffstats
path: root/lib/files/file.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/files/file.php')
-rw-r--r--lib/files/file.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/files/file.php b/lib/files/file.php
index b6432e63458..0d33cea7ee7 100644
--- a/lib/files/file.php
+++ b/lib/files/file.php
@@ -30,7 +30,7 @@ class File{
public static function resolve($fullPath){
$storage = null;
$internalPath = '';
- list($storage, $internalPath) = \OC_Filesystem::resolvePath($fullPath);
+ list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($fullPath);
return new File($storage, $internalPath);
}