mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-21 10:27:52 +02: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);
|
$this->debug($newitem);
|
||||||
$newitem['name'] = $this->decodeurl($newitem['name']);
|
$newitem['name'] = $this->decodeurl($newitem['name']);
|
||||||
$result[$fixed_name]=$newitem;
|
$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)
|
if ($sorted)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user