summaryrefslogtreecommitdiff
path: root/modules/forum
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-02-20 13:55:42 +0000
committerDries Buytaert <dries@buytaert.net>2008-02-20 13:55:42 +0000
commit2526e41fdb090c472a48f44d9a84115567a8f639 (patch)
treeec520db5f2a366eb2669255a65b3842100e250f9 /modules/forum
parent584f3e886a7c9850d53fedaab2c8f3d0249bda10 (diff)
downloadbrdo-2526e41fdb090c472a48f44d9a84115567a8f639.tar.gz
brdo-2526e41fdb090c472a48f44d9a84115567a8f639.tar.bz2
- Patch #206820 by boydjd: corrected the forum deletion help text/documentation.
Diffstat (limited to 'modules/forum')
-rw-r--r--modules/forum/forum.admin.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/forum/forum.admin.inc b/modules/forum/forum.admin.inc
index 7bd3dd4a2..e7b12d335 100644
--- a/modules/forum/forum.admin.inc
+++ b/modules/forum/forum.admin.inc
@@ -173,8 +173,8 @@ function forum_confirm_delete(&$form_state, $tid) {
*/
function forum_confirm_delete_submit($form, &$form_state) {
taxonomy_del_term($form_state['values']['tid']);
- drupal_set_message(t('The forum %term and all sub-forums and associated posts have been deleted.', array('%term' => $form_state['values']['name'])));
- watchdog('content', 'forum: deleted %term and all its sub-forums and associated posts.', array('%term' => $form_state['values']['name']));
+ drupal_set_message(t('The forum %term and all sub-forums have been deleted.', array('%term' => $form_state['values']['name'])));
+ watchdog('content', 'forum: deleted %term and all its sub-forums.', array('%term' => $form_state['values']['name']));
$form_state['redirect'] = 'admin/content/forum';
return;