mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
pkg_comments.php: Fix links to user accounts
Regression introduced in 2425f963f8
.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
parent
3d07a58aac
commit
bd4a7aa0ff
1 changed files with 1 additions and 1 deletions
|
@ -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)): ?>
|
||||
|
|
Loading…
Add table
Reference in a new issue