diff --git a/web/lib/pkgfuncs.inc b/web/lib/pkgfuncs.inc index fd855ac1..53868b64 100644 --- a/web/lib/pkgfuncs.inc +++ b/web/lib/pkgfuncs.inc @@ -491,7 +491,12 @@ function pkg_search_page($SID="") { } if (isset($_GET['outdated'])) { - $q .= "AND OutOfDateTS IS NOT NULL "; + if ($_GET['outdated'] == 'on') { + $q .= "AND OutOfDateTS IS NOT NULL "; + } + elseif ($_GET['outdated'] == 'off') { + $q .= "AND OutOfDateTS IS NULL "; + } } $order = $_GET["SO"] == 'd' ? 'DESC' : 'ASC'; diff --git a/web/template/pkg_search_form.php b/web/template/pkg_search_form.php index fdeb01b8..a2b634df 100644 --- a/web/template/pkg_search_form.php +++ b/web/template/pkg_search_form.php @@ -105,11 +105,20 @@
  • - - - - - +