mirror of
https://github.com/silverstripe/silverstripe-multiform
synced 2024-10-22 11:05:49 +02:00
commit
f48b6234ed
@ -414,7 +414,7 @@ class SurveyForm extends MultiForm
|
||||
|
||||
if ($steps) {
|
||||
foreach ($steps as $step) {
|
||||
if($step->class == PersonalDetailsStep::class) {
|
||||
if($step->ClassName == PersonalDetailsStep::class) {
|
||||
$member = Member::create();
|
||||
$data = $step->loadData();
|
||||
|
||||
@ -424,7 +424,7 @@ class SurveyForm extends MultiForm
|
||||
}
|
||||
}
|
||||
|
||||
if ($step->class == OrganisationDetailsStep::class) {
|
||||
if ($step->ClassName == OrganisationDetailsStep::class) {
|
||||
$organisation = Organisation::create();
|
||||
$data = $step->loadData();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user