diff options
Diffstat (limited to 'apps/files/ajax/rawlist.php')
-rwxr-xr-x | apps/files/ajax/rawlist.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/ajax/rawlist.php b/apps/files/ajax/rawlist.php index 86119de2d1b..36dd35cc73e 100755 --- a/apps/files/ajax/rawlist.php +++ b/apps/files/ajax/rawlist.php @@ -7,7 +7,7 @@ $RUNTIME_APPTYPES=array('filesystem'); require_once('lib/template.php'); -OC_JSON::checkLoggedIn(); +OCP\JSON::checkLoggedIn(); // Load the files $dir = isset( $_GET['dir'] ) ? $_GET['dir'] : ''; @@ -21,6 +21,6 @@ foreach( OC_Files::getdirectorycontent( $dir, $mimetype ) as $i ){ $files[] = $i; } -OC_JSON::success(array('data' => $files)); +OCP\JSON::success(array('data' => $files)); ?> |