summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2002-01-11 21:19:54 +0000
committerDries Buytaert <dries@buytaert.net>2002-01-11 21:19:54 +0000
commit0567413c85cc1ff629df4a2bbbc0e2185afeb6e3 (patch)
tree0606bd76d5bc30f2c0929ebecd3f70248b4e87e5
parentb1d86208eb2f884d0e5823a800588e3da39e1acc (diff)
downloadbrdo-0567413c85cc1ff629df4a2bbbc0e2185afeb6e3.tar.gz
brdo-0567413c85cc1ff629df4a2bbbc0e2185afeb6e3.tar.bz2
- Added a "title"-attribute to the "register" link and translated the
"Rembember me" checkbox.
-rw-r--r--includes/theme.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/includes/theme.inc b/includes/theme.inc
index 29ee3d8a6..913731c77 100644
--- a/includes/theme.inc
+++ b/includes/theme.inc
@@ -52,8 +52,9 @@ class BaseTheme {
$output .= " <form action=\"module.php?mod=user&op=login\" method=\"post\">\n";
$output .= " <b>". t("Username") .":</b><br /><input name=\"edit[name]\" size=\"15\"><p />\n";
$output .= " <b>". t("Password") .":</b><br /><input name=\"edit[pass]\" size=\"15\" TYPE=\"password\"><br />\n";
+ $output .= form_checkbox(t("Remember me"), "remember_me", 1, 0);
$output .= " <input type=\"submit\" value=\"". t("Log in") ."\"><br />\n";
- if (variable_get("account_register", 1)) $output .= " <a href=\"module.php?mod=user\">". t("REGISTER") ."</a>\n";
+ if (variable_get("account_register", 1)) $output .= " <a href=\"module.php?mod=user\" title=\"". t("Create a new user account.") ."\">". t("REGISTER") ."</a>\n";
$output .= " </form>\n";
$output .= "</div>\n";