diff options
Diffstat (limited to 'apps/files/ajax/upload.php')
-rwxr-xr-x[-rw-r--r--] | apps/files/ajax/upload.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 3ac8ef59560..c50f6233a46 100644..100755 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -46,7 +46,7 @@ $result=array(); if(strpos($dir,'..') === false){ $fileCount=count($files['name']); for($i=0;$i<$fileCount;$i++){ - $target = OC_Helper::buildNotExistingFileName(stripslashes($dir), $files['name'][$i]); + $target = OCP\Util::buildNotExistingFileName(stripslashes($dir), $files['name'][$i]); if(is_uploaded_file($files['tmp_name'][$i]) and OC_Filesystem::fromTmpFile($files['tmp_name'][$i],$target)){ $meta=OC_FileCache::getCached($target); $result[]=array( "status" => "success", 'mime'=>$meta['mimetype'],'size'=>$meta['size'],'name'=>basename($target)); |