From c17c4d46081f993d632625c37537bfd3048beeb7 Mon Sep 17 00:00:00 2001 From: Rod Wright Date: Mon, 2 Mar 2026 14:16:20 -0500 Subject: [PATCH] Changed $srchflags to grab $_REQUEST instead of $_POST --- distfiles/search.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distfiles/search.php b/distfiles/search.php index 3e89453..89a484d 100644 --- a/distfiles/search.php +++ b/distfiles/search.php @@ -34,7 +34,7 @@ $srchpname = $_REQUEST['srchpname'] ?? NULL; $srchploc = $_REQUEST['srchploc'] ?? NULL; $srchnha = $_REQUEST['srchnha'] ?? NULL; $srchrepord = $_REQUEST['srchrepord'] ?? NULL; -$srchflags = $_POST['srchflags'] ?? []; +$srchflags = $_REQUEST['srchflags'] ?? []; $target = $_REQUEST['target'] ?? ["log", "maintform", "part"]; $doparts = PARTS_FUNCTIONS;