diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-05-15 20:39:55 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-05-15 20:39:55 +0000 |
commit | 35f44e83f8376f24dee7201bab18c3e728769a35 (patch) | |
tree | bda0853a23d608155f0d893a9ccfe2fa957cb81e /modules/user.module | |
parent | 87c134fa1eb05e3c08b2efaff6cf86dcea21a497 (diff) | |
download | brdo-35f44e83f8376f24dee7201bab18c3e728769a35.tar.gz brdo-35f44e83f8376f24dee7201bab18c3e728769a35.tar.bz2 |
- xhtml errors
- improper link attributes.
Diffstat (limited to 'modules/user.module')
-rw-r--r-- | modules/user.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user.module b/modules/user.module index b37841a67..442122b7d 100644 --- a/modules/user.module +++ b/modules/user.module @@ -474,7 +474,7 @@ function user_block() { // Save the referer. We record where the user came from such that we // can redirect him after having completed the login form. if (!$edit["destination"]) $edit["destination"] = request_uri(); - $output .= "<input name=\"edit[destination]\" type=\"hidden\" value=\"" . $edit["destination"] . "\">"; + $output .= "<input name=\"edit[destination]\" type=\"hidden\" value=\"" . $edit["destination"] . "\" />"; $output .= "<b>". t("Username") .":</b><br /><input name=\"edit[name]\" size=\"15\" /><br />\n"; $output .= "<b>". t("Password") .":</b><br /><input name=\"edit[pass]\" size=\"15\" type=\"password\" /><br />\n"; $output .= "<input name=\"edit[remember_me]\" type=\"checkbox\" />". t("Remember me") ."<br />\n"; |