diff options
Diffstat (limited to 'modules/path')
-rw-r--r-- | modules/path/path.module | 20 |
1 files changed, 3 insertions, 17 deletions
diff --git a/modules/path/path.module b/modules/path/path.module index b4aedabc6..459533563 100644 --- a/modules/path/path.module +++ b/modules/path/path.module @@ -112,15 +112,9 @@ function path_admin_edit($pid = 0) { * Menu callback; handles deletion of an URL alias. */ function path_admin_delete($pid = 0) { - path_delete($pid); - print theme('page', path_overview()); -} - -/** - * Menu callback; presents the path-specific information from admin/help. - */ -function path_admin_help() { - print theme('page', path_help('admin/help#path')); + db_query('DELETE FROM {url_alias} WHERE pid = %d', $pid); + drupal_set_message(t('the alias has been deleted.')); + drupal_goto('admin/path'); } /** @@ -288,14 +282,6 @@ function path_load($pid) { } /** - * Remove an URL alias from the database. - */ -function path_delete($pid) { - db_query('DELETE FROM {url_alias} WHERE pid = %d', $pid); - drupal_set_message(t('the alias has been deleted.')); -} - -/** * Verify that a new URL alias is valid, and save it to the database. */ function path_save($edit) { |