diff options
Diffstat (limited to 'modules/comment/comment.module')
-rw-r--r-- | modules/comment/comment.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module index 3547d2d61..7aaed2fc7 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -136,8 +136,8 @@ function comment_menu($may_cache) { $access = user_access('post comments'); $items[] = array('path' => 'comment/edit', 'title' => t('edit comment'), - 'callback' => 'drupal_get_form', - 'callback arguments' => array('comment_edit'), 'access' => $access, 'type' => MENU_CALLBACK); + 'callback' => 'comment_edit', + 'access' => $access, 'type' => MENU_CALLBACK); } else { if (arg(0) == 'comment' && arg(1) == 'reply' && is_numeric(arg(2))) { |