nortmalize path before adding it to the fscache to avoid multiple fscache entries for the same file

This commit is contained in:
Björn Schießle 2012-10-12 10:26:49 +02:00
parent b761143047
commit d7f43945e7
1 changed files with 3 additions and 0 deletions

View File

@ -62,6 +62,9 @@ class OC_FileCache{
* $data is an assiciative array in the same format as returned by get
*/
public static function put($path,$data,$root=false) {
if ($path != '') {
$path = OC_Filesystem::normalizePath($path);
}
if($root===false) {
$root=OC_Filesystem::getRoot();
}