summaryrefslogtreecommitdiff
path: root/modules/contact
diff options
context:
space:
mode:
Diffstat (limited to 'modules/contact')
-rw-r--r--modules/contact/contact.pages.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/contact/contact.pages.inc b/modules/contact/contact.pages.inc
index 7248303d6..2855bec83 100644
--- a/modules/contact/contact.pages.inc
+++ b/modules/contact/contact.pages.inc
@@ -50,7 +50,7 @@ function contact_site_form($form, &$form_state) {
if (!$user->uid) {
$form['#attached']['library'][] = array('system', 'cookie');
- $form['#attached']['js'][] = drupal_get_path('module', 'contact') . '/contact.js';
+ $form['#attributes']['class'][] = 'user-info-from-cookie';
}
$form['#token'] = $user->uid ? $user->name . $user->mail : '';
@@ -178,7 +178,7 @@ function contact_personal_form($form, &$form_state, stdClass $recipient) {
if (!$user->uid) {
$form['#attached']['library'][] = array('system', 'cookie');
- $form['#attached']['js'][] = drupal_get_path('module', 'contact') . '/contact.js';
+ $form['#attributes']['class'][] = 'user-info-from-cookie';
}
$form['#token'] = $user->uid ? $user->name . $user->mail : '';