diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2007-06-22 08:32:28 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2007-06-22 08:32:28 +0000 |
commit | fe8b35f52778b63b96c969da27d2929beee8c1b9 (patch) | |
tree | bb7a2a5014006acb1fc893e29299f2dc77918327 /modules/path/path.module | |
parent | 39a0ee0264f2e6e88b66e983e53bbf8a98072d3b (diff) | |
download | brdo-fe8b35f52778b63b96c969da27d2929beee8c1b9.tar.gz brdo-fe8b35f52778b63b96c969da27d2929beee8c1b9.tar.bz2 |
#153781: Convert all remaining confirm_forms() to deletion api.
Diffstat (limited to 'modules/path/path.module')
-rw-r--r-- | modules/path/path.module | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/path/path.module b/modules/path/path.module index 9900d6641..5a663e77b 100644 --- a/modules/path/path.module +++ b/modules/path/path.module @@ -96,8 +96,7 @@ function path_admin_delete_confirm($pid) { $form['pid'] = array('#type' => 'value', '#value' => $pid); $output = confirm_form($form, t('Are you sure you want to delete path alias %title?', array('%title' => $path['dst'])), - isset($_GET['destination']) ? $_GET['destination'] : 'admin/build/path', t('This action cannot be undone.'), - t('Delete'), t('Cancel') ); + isset($_GET['destination']) ? $_GET['destination'] : 'admin/build/path'); } return $output; } |