Turn more and less buttons into links

This is to (at least) fix the more and less buttons which weren't working
because of the drop down menu for actions

Signed-off-by: Callan Barrett <wizzomafizzo@gmail.com>
This commit is contained in:
Callan Barrett 2008-01-23 21:34:10 +09:00 committed by Simo Leone
parent 32be42aee1
commit e7bb7a220d

View file

@ -608,18 +608,15 @@ function pkg_search_page($SID="") {
# determine paging variables # determine paging variables
# #
if (intval($_GET['O'])) {
$O = $_GET['O'];
} else {
$O = 0;
}
$_REQUEST["PP"] ? $PP = intval($_REQUEST["PP"]) : $PP = 25; $_REQUEST["PP"] ? $PP = intval($_REQUEST["PP"]) : $PP = 25;
if ($PP < 25) {$PP = 25;} if ($PP < 25) {$PP = 25;}
if ($PP > 100) {$PP = 100;} if ($PP > 100) {$PP = 100;}
$_REQUEST["O"] ? $O = intval($_REQUEST["O"]) : $O = 0;
if ($_REQUEST["do_More"]) {
$O += $PP;
} elseif ($_REQUEST["do_Less"]) {
$O -= $PP;
}
if ($O < 0) {
$O = 0;
}
if ($_REQUEST["do_Search"] && $_REQUEST["do_Search"] != 1) { if ($_REQUEST["do_Search"] && $_REQUEST["do_Search"] != 1) {
# reset the offset to zero if they hit Go # reset the offset to zero if they hit Go
# #
@ -1062,6 +1059,7 @@ function pkg_search_page($SID="") {
# #
print "<div style='text-align: right; padding: 5px 5% 5px 0'>"; print "<div style='text-align: right; padding: 5px 5% 5px 0'>";
print "<select name='action'>"; print "<select name='action'>";
print "<option>" . __("Actions") . "</option>";
print "<option value='do_Flag'>".__("Flag Out-of-date")."</option>\n"; print "<option value='do_Flag'>".__("Flag Out-of-date")."</option>\n";
print "<option value='do_UnFlag'>".__("Unflag Out-of-date")."</option>\n"; print "<option value='do_UnFlag'>".__("Unflag Out-of-date")."</option>\n";
print "<option value='do_Adopt'>".__("Adopt Packages")."</option>\n"; print "<option value='do_Adopt'>".__("Adopt Packages")."</option>\n";
@ -1103,23 +1101,21 @@ function pkg_search_page($SID="") {
print " </span></td>\n"; print " </span></td>\n";
print " </tr>"; print " </tr>";
# now print the forward and back buttons on the bottom # now print the forward and back buttons on the bottom
# LEFT # LEFT
print " <tr>"; print " <tr>";
print " <td align='left'>"; print " <td align='left'>";
if (($O-$PP) >= 0) { if (($O-$PP) >= 0) {
print " <input type='submit' class='button' name='do_Less'"; print "<a href='/packages.php?O=" . ($O - $PP) . "&L=".intval($_REQUEST["L"])."&C=".intval($_REQUEST["C"])."&K=$K&SB=l&SO=$SO_next&PP=$PP&SeB=".$_REQUEST["SeB"]."&do_MyPackages=".$_REQUEST["do_MyPackages"]."&do_Orphans=".$_REQUEST["do_Orphans"]. "'>" . __("Less") . "</a>";
print " value='&lt;-- ".__("Less")."'>\n"; } else if ($O<$PP && $O>0) {
} print "<a href='/packages.php?O=0'>" . __("Less") . "</a>";
else {
print "&nbsp;";
} }
print " </td>"; print " </td>";
# RIGHT # RIGHT
print " <td align='right'>"; print " <td align='right'>";
if (mysql_num_rows(db_query($qnext, $dbh))) { if (mysql_num_rows(db_query($qnext, $dbh))) {
print " <input type='submit' class='button' name='do_More'"; print "<a href='/packages.php?O=" . ($O + $PP) . "&L=".intval($_REQUEST["L"])."&C=".intval($_REQUEST["C"])."&K=$K&SB=l&SO=$SO_next&PP=$PP&SeB=".$_REQUEST["SeB"]."&do_MyPackages=".$_REQUEST["do_MyPackages"]."&do_Orphans=".$_REQUEST["do_Orphans"]."'>" . __("More") . "</a>";
print " value='".__("More")." --&gt;'>\n";
} }
print " </td>\n"; print " </td>\n";
print " </tr>\n"; print " </tr>\n";