summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--web/lib/pkgfuncs.inc12
-rw-r--r--web/template/pkg_search_form.php2
2 files changed, 7 insertions, 7 deletions
diff --git a/web/lib/pkgfuncs.inc b/web/lib/pkgfuncs.inc
index 03deea29..b38c7da5 100644
--- a/web/lib/pkgfuncs.inc
+++ b/web/lib/pkgfuncs.inc
@@ -419,13 +419,13 @@ function pkg_search_page($SID="") {
if (isset($_GET["PP"])) {
$_GET["PP"] = intval($_GET["PP"]);
- if ($_GET["PP"] < 25)
- $_GET["PP"] = 25;
- else if ($_GET["PP"] > 100)
- $_GET["PP"] = 100;
+ if ($_GET["PP"] < 50)
+ $_GET["PP"] = 50;
+ else if ($_GET["PP"] > 250)
+ $_GET["PP"] = 250;
}
else {
- $_GET["PP"] = 25;
+ $_GET["PP"] = 50;
}
// FIXME: pull out DB-related code. all of it.
@@ -560,7 +560,7 @@ function pkg_search_page($SID="") {
if ($total > 1 || $total == 0) {
# calculation of pagination links
- $per_page = ($_GET['PP'] > 0) ? $_GET['PP'] : 25;
+ $per_page = ($_GET['PP'] > 0) ? $_GET['PP'] : 50;
$current = ceil($first / $per_page);
$pages = ceil($total / $per_page);
$templ_pages = array();
diff --git a/web/template/pkg_search_form.php b/web/template/pkg_search_form.php
index 896d47f7..e570dfbc 100644
--- a/web/template/pkg_search_form.php
+++ b/web/template/pkg_search_form.php
@@ -89,7 +89,7 @@
<label><?php print __("Per page"); ?></label>
<select name='PP'>
<?php
- $pages = array(25, 50, 75, 100);
+ $pages = array(50, 100, 250);
foreach ($pages as $i):
if (isset($_REQUEST['PP']) && $_REQUEST['PP'] == $i):
?>