mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-08 23:19:04 +01:00
sim's patch #1217: webdav client cache fix
This commit is contained in:
parent
6395e2a6ab
commit
ff3eae22d3
@ -693,7 +693,14 @@ if (DEBUG_CACHE)
|
||||
$this->debug($newitem);
|
||||
$newitem['name'] = $this->decodeurl($newitem['name']);
|
||||
$result[$fixed_name]=$newitem;
|
||||
$this->cached_props[$name.'//1//1'] = array($fixed_name=>$newitem);
|
||||
if ($newitem['is_dir']==1)
|
||||
{
|
||||
$this->cached_props[$name.'//0//1'] = array($fixed_name=>$newitem);
|
||||
}
|
||||
else
|
||||
{
|
||||
$this->cached_props[$name.'//1//1'] = array($fixed_name=>$newitem);
|
||||
}
|
||||
}
|
||||
if ($sorted)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user