summaryrefslogtreecommitdiff
path: root/modules/comment
diff options
context:
space:
mode:
Diffstat (limited to 'modules/comment')
-rw-r--r--modules/comment/comment.admin.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/comment/comment.admin.inc b/modules/comment/comment.admin.inc
index ba7017865..5d29c9b0f 100644
--- a/modules/comment/comment.admin.inc
+++ b/modules/comment/comment.admin.inc
@@ -13,10 +13,10 @@ function comment_admin($type = 'new') {
$edit = $_POST;
if (isset($edit['operation']) && ($edit['operation'] == 'delete') && isset($edit['comments']) && $edit['comments']) {
- return drupal_render(drupal_get_form('comment_multiple_delete_confirm'));
+ return drupal_get_form('comment_multiple_delete_confirm');
}
else {
- return drupal_render(drupal_get_form('comment_admin_overview', $type, arg(4)));
+ return drupal_get_form('comment_admin_overview', $type, arg(4));
}
}