diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-05-02 15:11:05 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-05-02 15:11:05 +0000 |
commit | d1bc88924267f992b539b635a8de296e96c56ae3 (patch) | |
tree | fb74d421f9af67271938fcdcb8380e1b057f63fe /modules/user/user.module | |
parent | 4bc5d8d244bf152629e5a6738ddab2dd0d225896 (diff) | |
download | brdo-d1bc88924267f992b539b635a8de296e96c56ae3.tar.gz brdo-d1bc88924267f992b539b635a8de296e96c56ae3.tar.bz2 |
- Patch #227830 by JohnAlbin: link attributes added to l() incorrectly.
Diffstat (limited to 'modules/user/user.module')
-rw-r--r-- | modules/user/user.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/user/user.module b/modules/user/user.module index fd3f5b0c2..2b1414c59 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -627,9 +627,9 @@ function user_login_block() { ); $items = array(); if (variable_get('user_register', 1)) { - $items[] = l(t('Create new account'), 'user/register', array('title' => t('Create a new user account.'))); + $items[] = l(t('Create new account'), 'user/register', array('attributes' => array('title' => t('Create a new user account.')))); } - $items[] = l(t('Request new password'), 'user/password', array('title' => t('Request new password via e-mail.'))); + $items[] = l(t('Request new password'), 'user/password', array('attributes' => array('title' => t('Request new password via e-mail.')))); $form['links'] = array('#value' => theme('item_list', $items)); return $form; } |