mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-26 18:03:39 +01:00
Fix GroupDAV ctag issues
This commit is contained in:
parent
6e120aacbc
commit
7727759510
@ -393,11 +393,11 @@ class addressbook_groupdav extends groupdav_handler
|
||||
|
||||
if (empty($result))
|
||||
{
|
||||
$ctag = $result[0]['contact_modified'];
|
||||
$ctag = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
$ctag = time();
|
||||
$ctag = $result[0]['contact_modified'];
|
||||
}
|
||||
|
||||
return 'EGw-'.$ctag.'-wGE';
|
||||
|
@ -513,7 +513,7 @@ class infolog_groupdav extends groupdav_handler
|
||||
|
||||
$result =& $this->bo->search($query);
|
||||
|
||||
if (empty($result)) return 'EGw-'.time().'-wGE';
|
||||
if (empty($result)) return 'EGw-0-wGE';
|
||||
|
||||
$entry = array_shift($result);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user