From a0d917fe98efbb11905f7ddd12169e3675690555 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Sun, 15 Apr 2012 16:59:39 +0200 Subject: fixing oc-375 - a number is appended tp the filename --- files/ajax/upload.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'files/ajax') diff --git a/files/ajax/upload.php b/files/ajax/upload.php index af7a7acf702..76ea65fe933 100644 --- a/files/ajax/upload.php +++ b/files/ajax/upload.php @@ -47,7 +47,8 @@ $result=array(); if(strpos($dir,'..') === false){ $fileCount=count($files['name']); for($i=0;$i<$fileCount;$i++){ - $target=stripslashes($dir) . $files['name'][$i]; + // $target=stripslashes($dir) . $files['name'][$i]; + $target = OC_Helper::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'=>$files['name'][$i]); -- cgit v1.2.3