mirror of
https://github.com/silverstripe/silverstripe-multiform
synced 2024-10-22 11:05:49 +02:00
Removed calls to previously removed methods
This commit is contained in:
parent
01fe23fe2f
commit
a47191c802
@ -129,7 +129,6 @@ abstract class MultiForm extends Form {
|
||||
// @TODO fix the fact that you can continually refresh on the first step creating new records
|
||||
// @TODO encapsulate this into it's own method - it's the same code as the next() method anyway
|
||||
$currentStep = new $startStepClass();
|
||||
$currentStep->start();
|
||||
$currentStep->SessionID = $this->session->ID;
|
||||
$currentStep->write();
|
||||
$this->session->CurrentStepID = $currentStep->ID;
|
||||
@ -260,7 +259,6 @@ abstract class MultiForm extends Form {
|
||||
$nextStep->SessionID = $this->session->ID;
|
||||
}
|
||||
|
||||
$nextStep->finish();
|
||||
$nextStep->write();
|
||||
$this->session->CurrentStepID = $nextStep->ID;
|
||||
$this->session->write();
|
||||
|
Loading…
Reference in New Issue
Block a user