diff options
-rw-r--r-- | modules/comment/comment.admin.inc | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/modules/comment/comment.admin.inc b/modules/comment/comment.admin.inc index ddbdc8bed..eb4a769b8 100644 --- a/modules/comment/comment.admin.inc +++ b/modules/comment/comment.admin.inc @@ -16,19 +16,17 @@ function comment_admin($type = 'new') { return drupal_get_form('comment_multiple_delete_confirm'); } else { - return drupal_get_form('comment_admin_overview', $type, arg(4)); + return drupal_get_form('comment_admin_overview', $type); } } /** - * Form builder; Builds the comment overview form for the admin. + * Form builder for the comment overview administration form. * - * @param $type - * Not used. * @param $arg - * Current path's fourth component deciding the form type (Published comments/Approval queue). - * @return - * The form structure. + * Current path's fourth component: the type of overview form ('approval' or + * 'new'). + * * @ingroup forms * @see comment_admin_overview_validate() * @see comment_admin_overview_submit() |