From c1aa73b7cc3a23d3bf4f9f71e386fc318ea0e418 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Wed, 14 Apr 2010 01:44:56 +0000 Subject: [PATCH] MINOR applied correct decorators MINOR Page.ss now takes advantage of the SiteConfig FEATURE audit trails MINOR fixed JS error around concurrent editing MINOR ability to disable sorting on tablelistfield MINOR added default timezone to static-main.php to avoid PHP warnings MINOR only display Roles tab on groups if there are roles in the system MINOR publishing activity report ENHANCEMENT ability to parameterize SSReport's (from r85903) (from r98156) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@102753 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- code/ReportAdmin.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/ReportAdmin.php b/code/ReportAdmin.php index 0bbdb825..abb865a7 100755 --- a/code/ReportAdmin.php +++ b/code/ReportAdmin.php @@ -160,9 +160,11 @@ class ReportAdmin extends LeftAndMain { $idField->setValue($className); $fields->push($idField); - $actions = new FieldSet(); + $actions = $obj->getCMSActions(); $form = new Form($this, 'EditForm', $fields, $actions); + + $form->loadDataFrom($this->request->requestVars()); return $form; }