From ec4320555139d322b4cb1d95f46a201a309fb231 Mon Sep 17 00:00:00 2001 From: Sam Minnee Date: Thu, 4 Feb 2010 04:46:13 +0000 Subject: [PATCH] BUGFIX: Fixed bug with report search fields not showing the value that you just searched for. (from r95567) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/branches/2.4@98170 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- code/ReportAdmin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/ReportAdmin.php b/code/ReportAdmin.php index dc843090..323435b4 100755 --- a/code/ReportAdmin.php +++ b/code/ReportAdmin.php @@ -205,7 +205,7 @@ class ReportAdmin extends LeftAndMain { $form = new Form($this, 'EditForm', $fields, $actions); - $form->loadDataFrom($_GET); + $form->loadDataFrom($_REQUEST); // Include search criteria in the form action so that pagination works $filteredCriteria = array_merge($_GET, $_POST);