diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-07-18 07:29:07 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-07-18 08:07:17 +0200 |
commit | bd4a7aa0ffc2c9eeec26b11958c15cecb6e949e5 (patch) | |
tree | 62b4345120b79e3cce10820b4b0ef439a695aa3f /web/template | |
parent | 3d07a58aac265e706d2202832eef83ba59cf7c2e (diff) | |
download | aur-bd4a7aa0ffc2c9eeec26b11958c15cecb6e949e5.tar.gz aur-bd4a7aa0ffc2c9eeec26b11958c15cecb6e949e5.tar.xz |
pkg_comments.php: Fix links to user accounts
Regression introduced in 2425f963f8ad45292c217914b5fee1ed18104c26.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/template')
-rw-r--r-- | web/template/pkg_comments.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/template/pkg_comments.php b/web/template/pkg_comments.php index 30ceea53..0f7d80c2 100644 --- a/web/template/pkg_comments.php +++ b/web/template/pkg_comments.php @@ -10,7 +10,7 @@ $count = package_comments_count($row['ID']); <?php while (list($indx, $row) = each($comments)): ?> <?php if ($SID): - $row['UserName'] = "<a href=\"<?php echo get_uri('/account/'); ?>?Action=AccountInfo&ID={$row['UsersID']}\">{$row['UserName']}</a>"; + $row['UserName'] = "<a href=\"" . get_uri('/account/') . "?Action=AccountInfo&ID={$row['UsersID']}\">{$row['UserName']}</a>"; endif; ?> <h4> <?php if (canDeleteCommentArray($row, $atype, $uid)): ?> |