diff options
author | natrak <> | 2001-07-20 09:53:51 +0000 |
---|---|---|
committer | natrak <> | 2001-07-20 09:53:51 +0000 |
commit | cbcd94c24e147501114509c450b7a0f7f1d9b205 (patch) | |
tree | 7de87c9ff27246c00550765bde1458d901f44c82 | |
parent | 8f74184a58c1b3236a5554e4464b7e1f3d8ba264 (diff) | |
download | brdo-cbcd94c24e147501114509c450b7a0f7f1d9b205.tar.gz brdo-cbcd94c24e147501114509c450b7a0f7f1d9b205.tar.bz2 |
account.php
- Added real name in the for when the user is looking at their own information
as reported by Gerhard Killesreiter
-rw-r--r-- | account.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/account.php b/account.php index 84c401cde..f288eb889 100644 --- a/account.php +++ b/account.php @@ -188,6 +188,7 @@ function account_user($uname) { if ($user->id && $user->userid == $uname) { $output .= "<TABLE BORDER=\"0\" CELLPADDING=\"2\" CELLSPACING=\"2\">\n"; $output .= " <TR><TD ALIGN=\"right\"><B>". t("Username") .":</B></TD><TD>$user->userid</TD></TR>\n"; + $output .= " <TR><TD ALIGN=\"right\"><B>". t("Real name") .":</B></TD><TD>". check_output($user->name) ."</TD></TR>\n"; $output .= " <TR><TD ALIGN=\"right\"><B>". t("E-mail") .":</B></TD><TD>". format_email($user->fake_email) ."</A></TD></TR>\n"; $output .= " <TR><TD ALIGN=\"right\"><B>". t("Homepage") .":</B></TD><TD>". format_url($user->url) ."</TD></TR>\n"; $output .= " <TR><TD ALIGN=\"right\" VALIGN=\"top\"><B>". t("Bio") .":</B></TD><TD>". check_output($user->bio, 1) ."</TD></TR>\n"; |