diff options
Diffstat (limited to 'modules/comment/comment.pages.inc')
-rw-r--r-- | modules/comment/comment.pages.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/comment.pages.inc b/modules/comment/comment.pages.inc index 08c6aec5a..9b4e3abcc 100644 --- a/modules/comment/comment.pages.inc +++ b/modules/comment/comment.pages.inc @@ -102,7 +102,7 @@ function comment_reply($node, $pid = NULL) { drupal_goto("node/$node->nid"); } elseif (user_access('post comments')) { - $output .= theme('comment_form_box', array('pid' => $pid, 'nid' => $node->nid), t('Reply')); + $output .= theme('comment_form_box', array('pid' => $pid, 'nid' => $node->nid), t('Add new comment')); } else { drupal_set_message(t('You are not authorized to post comments.'), 'error'); |