diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-10-16 15:54:33 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-10-16 15:54:33 +0000 |
commit | f46e6626cd5274f1783fb2f6e0e776b8b43b1a5c (patch) | |
tree | 794eabc8e59750d9581f4928d08900f15142818f /modules/user | |
parent | bac6eed5ffa6c64d33c5c4bbd419336f0ca703db (diff) | |
download | brdo-f46e6626cd5274f1783fb2f6e0e776b8b43b1a5c.tar.gz brdo-f46e6626cd5274f1783fb2f6e0e776b8b43b1a5c.tar.bz2 |
- Patch #440876 by Dave Reid, sun: reuse comment.module's anonymous cookie information.
Diffstat (limited to 'modules/user')
-rw-r--r-- | modules/user/user.module | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/user/user.module b/modules/user/user.module index ca787e054..fe75f1c7b 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -3068,6 +3068,9 @@ function user_register_form($form, &$form_state) { $form['#user'] = drupal_anonymous_user(); $form['#user_category'] = 'register'; + $form['#attached']['library'][] = array('system', 'cookie'); + $form['#attributes']['class'][] = 'user-info-from-cookie'; + // Start with the default user account fields. user_account_form($form, $form_state); |