diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-09-19 02:42:01 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-09-19 02:42:01 +0200 |
commit | 4aad42d993619d03040d1a96d133c7784aa4bc28 (patch) | |
tree | c23f89412ac2ec93a16889b4addedf0c1575a930 /web/lib | |
parent | 7c004693f720eafd3013119bb290cbd5ccdbda60 (diff) | |
download | aur-4aad42d993619d03040d1a96d133c7784aa4bc28.tar.gz aur-4aad42d993619d03040d1a96d133c7784aa4bc28.tar.xz |
Sync search result statistics with archweb
* Use archweb classes for search result statistics.
* Add some space between page numbers.
* Display current page number instead of current item range.
* Hide page numbers if the result fits into a single page.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/lib')
-rw-r--r-- | web/lib/pkgfuncs.inc.php | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/web/lib/pkgfuncs.inc.php b/web/lib/pkgfuncs.inc.php index b42df4c9..0c96a0ba 100644 --- a/web/lib/pkgfuncs.inc.php +++ b/web/lib/pkgfuncs.inc.php @@ -639,12 +639,6 @@ function pkg_search_page($SID="", $dbh=NULL) { // figure out the results to use $first = $_GET['O'] + 1; - if (($_GET['PP'] + $_GET['O']) > $total) { - $last = $total; - } else { - $last = $_GET['PP'] + $_GET['O']; - } - # calculation of pagination links $per_page = ($_GET['PP'] > 0) ? $_GET['PP'] : 50; $current = ceil($first / $per_page); |