diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2016-06-22 23:28:43 +0200 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2016-06-25 13:56:23 +0200 |
commit | 16674e4c9d226446a8e6f2189858ab4d3b77ece0 (patch) | |
tree | 64177e0435a45674bd7620366dcb5bc69e4daaeb | |
parent | a2a888625eb3c3dc353e2ef55e6fcbe054ab582f (diff) | |
download | aur-16674e4c9d226446a8e6f2189858ab4d3b77ece0.tar.gz aur-16674e4c9d226446a8e6f2189858ab4d3b77ece0.tar.xz |
Linkify user homepage URLs
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
-rw-r--r-- | web/template/account_details.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/template/account_details.php b/web/template/account_details.php index 0ac85a5a..8b763824 100644 --- a/web/template/account_details.php +++ b/web/template/account_details.php @@ -43,7 +43,7 @@ </tr> <tr> <th><?= __("Homepage") . ":" ?></th> - <td><?= htmlspecialchars($row["Homepage"], ENT_QUOTES) ?></td> + <td><a href="<?= htmlspecialchars($row["Homepage"], ENT_QUOTES) ?>" rel="nofollow"><?= htmlspecialchars($row["Homepage"], ENT_QUOTES) ?></a></td> </tr> <tr> <th><?= __("IRC Nick") . ":" ?></th> |