mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
pkg_search_results.php: Link to account when logged in
Replace the maintainer package search links with links to the maintainer's account when browsing the search results as a logged-in user. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
parent
6ed9da2c3e
commit
f08bfa5d01
1 changed files with 4 additions and 0 deletions
|
@ -73,7 +73,11 @@ if (!$result): ?>
|
|||
<td class="wrap"><?= htmlspecialchars($row['Description'], ENT_QUOTES); ?></td>
|
||||
<td>
|
||||
<?php if (isset($row["Maintainer"])): ?>
|
||||
<?php if ($SID): ?>
|
||||
<a href="<?= get_uri('/account/') . htmlspecialchars($row['Maintainer'], ENT_QUOTES) ?>" title="<?= __('View account information for %s', htmlspecialchars($row['Maintainer'])) ?>"><?= htmlspecialchars($row['Maintainer']) ?></a>
|
||||
<?php else: ?>
|
||||
<a href="<?= get_uri('/packages/'); ?>?K=<?= htmlspecialchars($row['Maintainer'], ENT_QUOTES) ?>&SeB=m"><?= htmlspecialchars($row['Maintainer']) ?></a>
|
||||
<?php endif; ?>
|
||||
<?php else: ?>
|
||||
<span><?= __("orphan") ?></span>
|
||||
<?php endif; ?>
|
||||
|
|
Loading…
Add table
Reference in a new issue