Skip to content
Snippets Groups Projects
Commit 464c751f authored by Robin Appelman's avatar Robin Appelman
Browse files

fix creating unique filenames

parent fa97c59f
No related branches found
No related tags found
No related merge requests found
......@@ -502,6 +502,9 @@ class OC_Helper {
*/
public static function buildNotExistingFileName($path, $filename)
{
if($path==='/'){
$path='';
}
if ($pos = strrpos($filename, '.')) {
$name = substr($filename, 0, $pos);
$ext = substr($filename, $pos);
......@@ -518,6 +521,6 @@ class OC_Helper {
$counter++;
}
return $newname;
return $newpath;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment