diff options
author | alecpl <alec@alec.pl> | 2010-08-09 06:35:10 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-08-09 06:35:10 +0000 |
commit | 119ad13d74388ed62144724ac22e7cc24588eb6b (patch) | |
tree | b7f1cbc9871c780d0571b6347bc81c8ca3e06430 /program/steps/addressbook/save.inc | |
parent | 03dbf37d5cfe46ad0441f9916e6f22d5de20bcab (diff) |
- Rename hooks: contact_save -> contact_update, identity_save -> identity_update, delete_identity -> identity_delete
- Print warning to the log about deprecated hook names usage
Diffstat (limited to 'program/steps/addressbook/save.inc')
-rw-r--r-- | program/steps/addressbook/save.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/program/steps/addressbook/save.inc b/program/steps/addressbook/save.inc index 800bf4632..dbc780812 100644 --- a/program/steps/addressbook/save.inc +++ b/program/steps/addressbook/save.inc @@ -54,7 +54,8 @@ foreach ($a_save_cols as $col) // update an existing contact if (!empty($cid)) { - $plugin = $RCMAIL->plugins->exec_hook('contact_save', array('id' => $cid, 'record' => $a_record, 'source' => get_input_value('_source', RCUBE_INPUT_GPC))); + $plugin = $RCMAIL->plugins->exec_hook('contact_update', + array('id' => $cid, 'record' => $a_record, 'source' => get_input_value('_source', RCUBE_INPUT_GPC))); $a_record = $plugin['record']; if (!$plugin['abort'] && ($result = $CONTACTS->update($cid, $a_record))) |