summaryrefslogtreecommitdiffstats
path: root/web/html/pkgsearch.php
diff options
context:
space:
mode:
authoreric <eric>2004-06-26 13:21:04 +0000
committereric <eric>2004-06-26 13:21:04 +0000
commitdc3b13064cdb59dd12b200e7f8c73fd63126dea6 (patch)
treef203062484b4f1b78d76ffef607526ad22399f13 /web/html/pkgsearch.php
parent5cbbf11c8bf72a1b80dc72e27d5737c7d79a5903 (diff)
downloadaurweb-dc3b13064cdb59dd12b200e7f8c73fd63126dea6.tar.xz
mypkgs works, but need an 'action' table
Diffstat (limited to 'web/html/pkgsearch.php')
-rw-r--r--web/html/pkgsearch.php10
1 files changed, 6 insertions, 4 deletions
diff --git a/web/html/pkgsearch.php b/web/html/pkgsearch.php
index 91a2d58..9d4521c 100644
--- a/web/html/pkgsearch.php
+++ b/web/html/pkgsearch.php
@@ -35,16 +35,18 @@ if ($atype && $_REQUEST["Action"] == "Something") {
#
} elseif ($_REQUEST["Action"] == "SearchPkgs") {
- # do something else based on what the user specifies
+ # the visitor has requested search options and/or hit the less/more button
#
- pkg_search_page($_REQUEST["L"], $_REQUEST["C"], $_REQUEST["K"],
- $_REQUEST["SB"], $_REQUEST["O"], $_REQUEST["PP"]);
+ pkg_search_page($_COOKIE["AURSID"], $_REQUEST["L"], $_REQUEST["C"],
+ $_REQUEST["K"], $_REQUEST["SB"], $_REQUEST["M"], $_REQUEST["O"],
+ $_REQUEST["PP"]);
} else {
# do the default thing - give the user a search form that they
# can specify: location, category, maintainer, name, 'my pkgs'
+ # and display a list of packages based on no search options.
#
- pkg_search_page();
+ pkg_search_page($_COOKIE["AURSID"]);
}