- Disabled the real name feature until a proper fix has been found.

3-00
Dries Buytaert 2001-08-04 20:36:34 +00:00
parent 405cc92a67
commit c54c4f86e0
1 changed files with 7 additions and 7 deletions

View File

@ -78,7 +78,7 @@ function account_info_edit() {
if ($user->id) {
// construct form:
$form .= form_item(t("Username"), $user->userid, t("Required, unique, and can not be changed."));
$form .= form_textfield(t("Real name"), "name", $user->name, 30, 55, t("Optional"));
// $form .= form_textfield(t("Real name"), "name", $user->name, 30, 55, t("Optional"));
$form .= form_item(t("Real e-mail address"), $user->real_email, t("Required, unique, can not be changed.") ." ". t("Your real e-mail address is never displayed publicly: only needed in case you lose your password."));
$form .= form_textfield(t("Fake e-mail address"), "fake_email", $user->fake_email, 30, 55, t("Optional") .". ". t("Displayed publicly so you may spam proof your real e-mail address if you want."));
$form .= form_textfield(t("Homepage"), "url", $user->url, 30, 55, t("Optional") .". ". t("Make sure you enter fully qualified URLs only. That is, remember to include \"http://\"."));