Backport fix to notify linked apps about changes in address

This commit is contained in:
Nathan Gray 2010-03-25 15:45:20 +00:00
parent 1bc9aca110
commit ee4820f782

View File

@ -760,6 +760,8 @@ class addressbook_bo extends addressbook_so
$to_write['location'] = 'editaccountcontact'; $to_write['location'] = 'editaccountcontact';
$GLOBALS['egw']->hooks->process($to_write,False,True); // called for every app now, not only enabled ones)); $GLOBALS['egw']->hooks->process($to_write,False,True); // called for every app now, not only enabled ones));
} }
// Notify linked apps about changes in the contact data
egw_link::notify_update('addressbook', $contact['id'], $contact);
} }
return $this->error ? false : $contact['id']; return $this->error ? false : $contact['id'];