summaryrefslogtreecommitdiff
path: root/modules/comment/comment.admin.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-05-25 10:43:54 +0000
committerDries Buytaert <dries@buytaert.net>2009-05-25 10:43:54 +0000
commit76957a25e6eb2ce82fc3f52f6f4f97be4748f6e6 (patch)
tree1014be2886f06d9c43ee127d1de2fb0e82f6d5e5 /modules/comment/comment.admin.inc
parent12024dbca416e8071dc34fb941e4970c150b0f47 (diff)
downloadbrdo-76957a25e6eb2ce82fc3f52f6f4f97be4748f6e6.tar.gz
brdo-76957a25e6eb2ce82fc3f52f6f4f97be4748f6e6.tar.bz2
- Patch #470594 by Moshe: convert more pages and blocks to return arrays.
Diffstat (limited to 'modules/comment/comment.admin.inc')
-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));
}
}