Index: modules/taxonomy.module =================================================================== RCS file: /cvs/drupal/drupal/modules/taxonomy.module,v retrieving revision 1.223 diff -u -r1.223 taxonomy.module --- modules/taxonomy.module 12 Sep 2005 21:55:41 -0000 1.223 +++ modules/taxonomy.module 15 Sep 2005 15:25:49 -0000 @@ -240,9 +240,6 @@ $form .= form_submit(t('Delete')); $form .= form_hidden('tid', $edit['tid']); } - else { - $form .= form_hidden('destination', $_GET['q']); - } return form($form); } @@ -1118,8 +1115,10 @@ return $output; } else { - taxonomy_save_term($edit); - drupal_goto('admin/taxonomy'); + if (taxonomy_save_term($edit) == SAVED_NEW) { + drupal_set_message(t('Created new term %term.', array('%term' => theme('placeholder', $edit['name'])))); + } + drupal_goto('admin/taxonomy/' . arg(2) . '/add/term'); } }