diff options
author | Lukas Fleischer <lfleischer@archlinux.org> | 2016-06-02 08:51:29 +0200 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2016-06-08 22:23:57 +0200 |
commit | e3670ef1888a3f030452b229e8d48b83bb83b240 (patch) | |
tree | a781f46adae963a5b19112e2928e87088394781b /web/template/account_details.php | |
parent | 9fec03d65598cf13d0efda6b9361d7b9e0ee7e36 (diff) | |
download | aurweb-e3670ef1888a3f030452b229e8d48b83bb83b240.tar.xz |
Add a homepage field to accounts
Allow users to add a link to their homepage to their profile.
Implements FS#22774.
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'web/template/account_details.php')
-rw-r--r-- | web/template/account_details.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/web/template/account_details.php b/web/template/account_details.php index 59a6a63..0ac85a5 100644 --- a/web/template/account_details.php +++ b/web/template/account_details.php @@ -42,6 +42,10 @@ <td><?= htmlspecialchars($row["RealName"], ENT_QUOTES) ?></td> </tr> <tr> + <th><?= __("Homepage") . ":" ?></th> + <td><?= htmlspecialchars($row["Homepage"], ENT_QUOTES) ?></td> + </tr> + <tr> <th><?= __("IRC Nick") . ":" ?></th> <td><?= htmlspecialchars($row["IRCNick"], ENT_QUOTES) ?></td> </tr> |