mirror of
https://github.com/silverstripe/silverstripe-frameworktest
synced 2024-10-22 11:06:02 +02:00
BUGFIX Changed protected statics to public to conincide with API change in MultiForm
This commit is contained in:
parent
c69c3c212b
commit
543e22be0b
@ -2,7 +2,7 @@
|
||||
|
||||
class Page2MultiForm extends MultiForm {
|
||||
|
||||
protected static $start_step = 'Page2PersonalDetailsFormStep';
|
||||
public static $start_step = 'Page2PersonalDetailsFormStep';
|
||||
|
||||
public function finish($data, $form) {
|
||||
parent::finish($data, $form);
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
class Page3MultiForm extends MultiForm {
|
||||
|
||||
protected static $start_step = 'Page3StartFormStep';
|
||||
public static $start_step = 'Page3StartFormStep';
|
||||
|
||||
public function finish($data, $form) {
|
||||
parent::finish($data, $form);
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
class TestMultiForm extends MultiForm {
|
||||
protected static $start_step = 'TestMultiFormStepOne';
|
||||
public static $start_step = 'TestMultiFormStepOne';
|
||||
|
||||
function finish($data, $form) {
|
||||
parent::finish($data, $form);
|
||||
|
Loading…
Reference in New Issue
Block a user