From e9141c7dde10dfa09f2acb3eef634e91f407bb6d Mon Sep 17 00:00:00 2001 From: Rod Wright Date: Tue, 3 Mar 2026 08:00:47 -0500 Subject: [PATCH] Initialize $s_group array if not passed in all_parameters --- distfiles/search.php | 1 + 1 file changed, 1 insertion(+) diff --git a/distfiles/search.php b/distfiles/search.php index cf0446b..c0b161f 100644 --- a/distfiles/search.php +++ b/distfiles/search.php @@ -105,6 +105,7 @@ extract($incoming, EXTR_SKIP); if (!isset($search)) $search=false; if (!isset($viewtype)) $viewtype="summary"; if (!isset($s_id)) $s_id=NULL; +if (!isset($s_group)) $s_group=[]; if (!isset($s_discrepancy_text)) $s_discrepancy_text=NULL; if (!isset($s_reported_by)) $s_reported_by=NULL; if (!isset($s_action_text)) $s_action_text=NULL;