diff options
Diffstat (limited to 'modules/comment')
-rw-r--r-- | modules/comment/comment.module | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module index c8063cbc0..a7c8238ef 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -1456,6 +1456,10 @@ function comment_form_submit($form_id, $form_values) { */ function theme_comment_form($form) { + if (!isset($form['#prefix'])) { + $form['#prefix'] = ''; + } + $form['#prefix'] .= "<a id=\"comment-form\"></a>\n"; return form_render($form); } |