#180559 by hunmonk: do not try to display the comment addition form at th end of comments, if we are already on the page, so it is displayed anyway
parent
5686eea147
commit
071d4b010e
|
@ -1120,8 +1120,9 @@ function comment_render($node, $cid = 0) {
|
|||
}
|
||||
}
|
||||
|
||||
// If enabled, show new comment form.
|
||||
if (user_access('post comments') && node_comment_mode($nid) == COMMENT_NODE_READ_WRITE && (variable_get('comment_form_location', COMMENT_FORM_SEPARATE_PAGE) == COMMENT_FORM_BELOW)) {
|
||||
// If enabled, show new comment form if it's not already being displayed.
|
||||
$reply = arg(0) == 'comment' && arg(1) == 'reply';
|
||||
if (user_access('post comments') && node_comment_mode($nid) == COMMENT_NODE_READ_WRITE && (variable_get('comment_form_location', COMMENT_FORM_SEPARATE_PAGE) == COMMENT_FORM_BELOW) && !$reply) {
|
||||
$output .= comment_form_box(array('nid' => $nid), t('Post new comment'));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue