diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2008-01-07 12:52:15 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2008-01-07 12:52:15 +0000 |
commit | b571a82e4ed9c8b3b6003fb2ff3816ae43f057c7 (patch) | |
tree | 53ed0bc7d4a8808de36578da1cbe0ab409fe809b /modules | |
parent | 7d7f2928d1543b61de9613a5308454775b79c667 (diff) | |
download | brdo-b571a82e4ed9c8b3b6003fb2ff3816ae43f057c7.tar.gz brdo-b571a82e4ed9c8b3b6003fb2ff3816ae43f057c7.tar.bz2 |
#206820 by catch, keith.smith: forum delete confirm form was saying it deleted posts, but it does not
Diffstat (limited to 'modules')
-rw-r--r-- | modules/forum/forum.admin.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/forum/forum.admin.inc b/modules/forum/forum.admin.inc index 90d06befc..917d4b974 100644 --- a/modules/forum/forum.admin.inc +++ b/modules/forum/forum.admin.inc @@ -165,7 +165,7 @@ function forum_confirm_delete(&$form_state, $tid) { $form['tid'] = array('#type' => 'value', '#value' => $tid); $form['name'] = array('#type' => 'value', '#value' => $term->name); - return confirm_form($form, t('Are you sure you want to delete the forum %name?', array('%name' => $term->name)), 'admin/content/forum', t('Deleting a forum or container will also delete its sub-forums and posts, if any. This action cannot be undone.'), t('Delete'), t('Cancel')); + return confirm_form($form, t('Are you sure you want to delete the forum %name?', array('%name' => $term->name)), 'admin/content/forum', t('Deleting a forum or container will also delete its sub-forums, if any. To delete posts in this forum, visit <a href="@content">content administration</a> first. This action cannot be undone.', array('@content' => url('admin/content/node'))), t('Delete'), t('Cancel')); } /** |