diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-07-02 08:18:15 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-07-02 08:23:27 +0200 |
commit | a149fc493f62f31e3806f353dde0c4dc812be6b2 (patch) | |
tree | e2e45340717bca33f80631bdc7ddd5956d7d9590 /web/html | |
parent | 64c4e51698c23b59121c94eb501ab2d4f97128e8 (diff) | |
download | aur-a149fc493f62f31e3806f353dde0c4dc812be6b2.tar.gz aur-a149fc493f62f31e3806f353dde0c4dc812be6b2.tar.xz |
Fix pagination in the package request list
This was not implemented properly in commit 8260111 (Add a package
request list, 2014-06-24).
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/html')
-rw-r--r-- | web/html/pkgreq.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/web/html/pkgreq.php b/web/html/pkgreq.php index 674f1c19..4b7d6cff 100644 --- a/web/html/pkgreq.php +++ b/web/html/pkgreq.php @@ -14,9 +14,6 @@ if (!isset($base_id)) { exit(); } - $results = pkgreq_list(); - $total = count($results); - /* Sanitize paging variables. */ if (isset($_GET['O'])) { $_GET['O'] = max(intval($_GET['O']), 0); @@ -30,6 +27,9 @@ if (!isset($base_id)) { $_GET["PP"] = 50; } + $results = pkgreq_list($_GET['O'], $_GET['PP']); + $total = pkgreq_count(); + /* Calculate the results to use. */ $first = $_GET['O'] + 1; |