v2.3.4-cvs
----------
+[jan] Remove deleted contacts from distribution lists in the same address book.
[mjr] Allow creation of default, personal address book when other read-only
sources are present.
[mjr] Log deletion in History when deleting all of a user's contacts
// Remove the contact if it no longer exists
$this->removeMember($member);
$modified = true;
+ continue;
}
} else {
list($sourceId, $contactId) = explode(':', $member, 2);
if (!is_a($driver, 'PEAR_Error')) {
$contact = $driver->getObject($contactId);
if (is_a($contact, 'PEAR_Error')) {
+ // Remove the contact if it no longer exists
+ $this->removeMember($member);
+ $modified = true;
continue;
}
} else {