| Versions | |
|---|---|
| 4.7 – 5 | taxonomy_term_confirm_delete_submit( |
| 6 – 7 | taxonomy_term_confirm_delete_submit($form, &$form_state) |
modules/
<?php
function taxonomy_term_confirm_delete_submit($form_id, $form_values) {
taxonomy_del_term($form_values['tid']);
drupal_set_message(t('Deleted term %name.', array('%name' => theme('placeholder', $form_values['name']))));
return 'admin/taxonomy';
}
?>