Fix for 'More' and 'Less' paging breakage.

Fix for 'More' and 'Less' paging breakage.
Takes into account PerPage and Category retention.
This commit is contained in:
eliott 2008-02-17 19:39:01 -08:00 committed by Simo Leone
parent 7bad8a8357
commit aedf2ab6a3

View file

@ -655,7 +655,8 @@ function pkg_search_page($SID="") {
# The search form
#
print "<form action='/packages.php' method='get'>\n";
print "<form action='/packages.php' method='post'>\n";
#print "<form action='/packages.php' method='get'>\n";
print "<input type='hidden' name='O' value='".$O."'>\n";
print "<center>\n";
@ -766,10 +767,8 @@ function pkg_search_page($SID="") {
print "</tr>\n";
print "</table>\n";
print "</center>\n";
print "</form>";
print "<br />\n";
print "<form action='/packages.php' method='post'>\n";
# query to pull out package info
#
# $q = "SELECT Packages.*, IF(ISNULL(PackageID), 0, COUNT(*)) AS Votes ";
@ -881,8 +880,6 @@ function pkg_search_page($SID="") {
$qnext = $q."LIMIT ".($O+$PP).", ".$PP; //next page's worth
$q.= "LIMIT ".$O.", ".$PP;
$result = db_query($q, $dbh);
print "<center>\n";