| | |
| | | <?php |
| | | |
| | | /* |
| | | /** |
| | | +-----------------------------------------------------------------------+ |
| | | | program/steps/addressbook/undo.inc | |
| | | | | |
| | |
| | | $restored = !$plugin['abort'] ? $CONTACTS->undelete($cid) : $plugin['result']; |
| | | |
| | | if (!$restored) { |
| | | $OUTPUT->show_message($plugin['message'] ? $plugin['message'] : 'contactrestoreerror', 'error'); |
| | | $OUTPUT->show_message($plugin['message'] ?: 'contactrestoreerror', 'error'); |
| | | $OUTPUT->command('list_contacts'); |
| | | $OUTPUT->send(); |
| | | } |
| | |
| | | $delcnt += $restored; |
| | | } |
| | | } |
| | | |
| | | // update saved search after data changed |
| | | rcmail_search_update(); |
| | | |
| | | $RCMAIL->session->remove('contact_undo'); |
| | | |