mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-24 17:04:14 +01:00
handle calendar replacements (search for events) only when there are calendar replacements required
This commit is contained in:
parent
5b6a39cce8
commit
399abd4060
@ -45,9 +45,9 @@ class addressbook_merge extends bo_merge
|
||||
{
|
||||
return false;
|
||||
}
|
||||
if (strpos($content,'$$calendar/') !== null)
|
||||
if (!(strpos($content,'$$calendar/') === false))
|
||||
{
|
||||
$replacements += $this->calendar_replacements($id,strpos($content,'$$calendar/-1/') !== null);
|
||||
$replacements += $this->calendar_replacements($id,!(strpos($content,'$$calendar/-1/') === false));
|
||||
}
|
||||
return $replacements;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user