diff options
Diffstat (limited to 'apps/files/ajax/autocomplete.php')
-rwxr-xr-x[-rw-r--r--] | apps/files/ajax/autocomplete.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/ajax/autocomplete.php b/apps/files/ajax/autocomplete.php index 8cdb6188a02..7ff34da96b3 100644..100755 --- a/apps/files/ajax/autocomplete.php +++ b/apps/files/ajax/autocomplete.php @@ -5,7 +5,7 @@ // Init owncloud -OC_JSON::checkLoggedIn(); +OCP\JSON::checkLoggedIn(); // Get data $query = $_GET['term']; @@ -51,6 +51,6 @@ if(OC_Filesystem::file_exists($base) and OC_Filesystem::is_dir($base)){ } } } -OC_JSON::encodedPrint($files); +OCP\JSON::encodedPrint($files); ?> |