Skip to content

Commit

Permalink
MINOR applied correct decorators
Browse files Browse the repository at this point in the history
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
  • Loading branch information
chillu committed Apr 14, 2010
1 parent 3e3c0c7 commit c1aa73b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion code/ReportAdmin.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -160,9 +160,11 @@ public function getEditForm($className = null) {
$idField->setValue($className); $idField->setValue($className);
$fields->push($idField); $fields->push($idField);


$actions = new FieldSet(); $actions = $obj->getCMSActions();


$form = new Form($this, 'EditForm', $fields, $actions); $form = new Form($this, 'EditForm', $fields, $actions);

$form->loadDataFrom($this->request->requestVars());


return $form; return $form;
} }
Expand Down

0 comments on commit c1aa73b

Please sign in to comment.