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 | |
parent | 87c134fa1eb05e3c08b2efaff6cf86dcea21a497 (diff) | |
download | brdo-35f44e83f8376f24dee7201bab18c3e728769a35.tar.gz brdo-35f44e83f8376f24dee7201bab18c3e728769a35.tar.bz2 |
- xhtml errors
- improper link attributes.
-rw-r--r-- | modules/cloud.module | 2 | ||||
-rw-r--r-- | modules/user.module | 2 | ||||
-rw-r--r-- | modules/user/user.module | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/modules/cloud.module b/modules/cloud.module index 8575b342f..add484759 100644 --- a/modules/cloud.module +++ b/modules/cloud.module @@ -164,7 +164,7 @@ function cloud_page() { function cloud_block() { $block[0]["subject"] = t("Site cloud"); - $block[0]["content"] = cloud_list(20) ."<br /><div align=\"right\">". lm(t("more"), array("mod" => "cloud"), "", array("title", t("Monitor other sites in the cloud."))) ."</div>"; + $block[0]["content"] = cloud_list(20) ."<br /><div align=\"right\">". lm(t("more"), array("mod" => "cloud"), "", array("title" => t("Monitor other sites in the cloud."))) ."</div>"; $block[0]["info"] = t("Site cloud"); return $block; } 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"; diff --git a/modules/user/user.module b/modules/user/user.module index b37841a67..442122b7d 100644 --- a/modules/user/user.module +++ b/modules/user/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"; |