diff options
Diffstat (limited to 'modules/comment')
-rw-r--r-- | modules/comment/comment.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module index 8dca3845e..b38f6381b 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -1645,7 +1645,7 @@ function comment_form($form, &$form_state, $comment) { if (!$user->uid && variable_get('comment_anonymous_' . $node->type, COMMENT_ANONYMOUS_MAYNOT_CONTACT) != COMMENT_ANONYMOUS_MAYNOT_CONTACT) { $form['#attached']['library'][] = array('system', 'cookie'); - $form['#attached']['js'][] = drupal_get_path('module', 'comment') . '/comment.js'; + $form['#attributes']['class'][] = 'user-info-from-cookie'; } $comment = (array) $comment; |