From e1effdb1c7f2db69cf3be44b52fe8b08de6a334b Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Fri, 13 Feb 2026 12:33:46 -0500 Subject: [PATCH] fix: restore filter Name and UserId after save/reload The post-save redirect included filter query params in the URL, which caused the view to populate from request data instead of loading from the database. Since the querystring omitted Name and UserId, both fields appeared empty/wrong after reload. Remove the querystring from the redirect so the view loads the saved filter from the database. Co-Authored-By: Claude Opus 4.6 --- web/includes/actions/filter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/includes/actions/filter.php b/web/includes/actions/filter.php index b6159d7c5..15e047651 100644 --- a/web/includes/actions/filter.php +++ b/web/includes/actions/filter.php @@ -112,7 +112,7 @@ if (isset($_REQUEST['object']) and ($_REQUEST['object'] == 'filter')) { $filter->control('start'); } global $redirect; - $redirect = '?view=filter&Id='.$_REQUEST['Id'].$filter->querystring('filter', '&'); + $redirect = '?view=filter&Id='.$_REQUEST['Id']; } else if ($action == 'control') { if ( $_REQUEST['command'] == 'start'