[VD:MySQL] fix _path() return rootName twice

This commit is contained in:
nao-pon
2016-01-25 21:35:40 +09:00
parent 5e2987e9fa
commit 83a09fe85e
+1 -1
View File
@@ -485,7 +485,7 @@ class elFinderVolumeMySQL extends elFinderVolumeDriver {
$dir = $this->stat($id);
$path .= $dir['name'].$this->separator;
}
return $this->rootName.$this->separator.$path.$file['name'];
return $path.$file['name'];
}
/**