summaryrefslogtreecommitdiff
path: root/modules/account.module
diff options
context:
space:
mode:
authornatrak <>2001-03-27 13:54:33 +0000
committernatrak <>2001-03-27 13:54:33 +0000
commitc72b91c6ab81bc9c11de5f94d81472990cc2127b (patch)
treec1cfb914ce89aa712e720c034b848d8673230852 /modules/account.module
parent2629c4bd8208cb7016b20b80b0e9ec4ab761a10c (diff)
downloadbrdo-c72b91c6ab81bc9c11de5f94d81472990cc2127b.tar.gz
brdo-c72b91c6ab81bc9c11de5f94d81472990cc2127b.tar.bz2
Fixed a small typ that caused the existing real name of an account now being shown when editing it.
Diffstat (limited to 'modules/account.module')
-rw-r--r--modules/account.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/account.module b/modules/account.module
index 980080796..82b01092d 100644
--- a/modules/account.module
+++ b/modules/account.module
@@ -116,7 +116,7 @@ function account_edit($name) {
$output .= "<B>Username:</B><BR>". check_output($account->userid) ."<P>\n";
$output .= "<B>Status:</B><BR><SELECT NAME=\"edit[status]\">\n$stat</SELECT><P>\n";
$output .= "<B>Administrator access:</B><BR><SELECT NAME=\"edit[access][]\" MULTIPLE=\"true\" SIZE=\"10\">$access</SELECT><P>\n";
- $output .= "<B>Real name:</B><BR><INPUT NAME=\"edit[name]\" SIZE=\"55\" VALUE=\"$account->real_name\"><P>\n";
+ $output .= "<B>Real name:</B><BR><INPUT NAME=\"edit[name]\" SIZE=\"55\" VALUE=\"$account->name\"><P>\n";
$output .= "<B>Real e-mail address:</B><BR><INPUT NAME=\"edit[real_email]\" SIZE=\"55\" VALUE=\"$account->real_email\"><P>\n";
$output .= "<B>Fake e-mail address:</B><BR><INPUT NAME=\"edit[fake_email]\" SIZE=\"55\" VALUE=\"$account->fake_email\"><P>\n";
$output .= "<B>URL of homepage:</B><BR><INPUT NAME=\"edit[url]\" SIZE=\"55\" VALUE=\"$account->url\"><P>\n";