blob: e7b00834b46da81e8d54f6e1eb1f19aa53759401 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?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>
|