diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-04-15 21:47:13 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-04-15 21:47:13 +0000 |
commit | 6840a20935eb9e74261f74f6d9387b66367930cb (patch) | |
tree | af1863d0d6f377de6549f4b34c4289ce1634a550 /modules/jabber.module | |
parent | 03c4b3c3088f3b95a7cab4f9c3e04fe45503b51b (diff) | |
download | brdo-6840a20935eb9e74261f74f6d9387b66367930cb.tar.gz brdo-6840a20935eb9e74261f74f6d9387b66367930cb.tar.bz2 |
Patch by Moshe (thanks)
- fix mail templating bugs
- fix admin account editing (related to theme changeover)
- fix description when editing a Jabber ID.
Diffstat (limited to 'modules/jabber.module')
-rw-r--r-- | modules/jabber.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/jabber.module b/modules/jabber.module index d9417176f..d5d74f019 100644 --- a/modules/jabber.module +++ b/modules/jabber.module @@ -166,7 +166,7 @@ function jabber_user($type, $edit, $user) { return $output; case "edit_form": $result = user_get_authname($user, $module); - $output .= form_textfield("$name ID", "authname_" . $module, $result, 30, 55, strtr(t("You may login to %s using a valid %id."), array("%s" => variable_get("site_name", "this web site"), "%id" => "<a href=\"module.php?mod=user&op=help#$module\">$name ID</a>"), "")); + $output .= form_textfield("$name ID", "authname_" . $module, $result, 30, 55, strtr(t("You may login to %s using a valid %id."), array("%s" => variable_get("site_name", "this web site"), "%id" => "<a href=\"module.php?mod=user&op=help#$module\">$name ID</a>"))); return $output; case "edit_validate": return user_validate_authmap($user, $edit["authname_$module"], $module); |