mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
We no longer use the term [unsupported] to refer to the "repository" of AUR packages. Update texts and variable names accordingly. Fixes FS#45381. Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
21 lines
463 B
PHP
21 lines
463 B
PHP
<?php
|
|
$username = username_from_sid($_COOKIE["AURSID"]);
|
|
?>
|
|
|
|
<h3><?= __("My Statistics"); ?></h3>
|
|
|
|
<table>
|
|
<tr>
|
|
<td>
|
|
<a href="<?= get_uri('/packages/'); ?>?SeB=m&K=<?= $username; ?>">
|
|
<?= __("Packages"); ?></a>
|
|
</td>
|
|
<td><?= $user_pkg_count; ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<a href="<?= get_uri('/packages/'); ?>?SeB=m&outdated=on&K=<?= $username; ?>"><?= __("Out of Date"); ?></a>
|
|
</td>
|
|
<td><?= $flagged_outdated ?></td>
|
|
</tr>
|
|
</table>
|