Removed calls to previously removed methods

This commit is contained in:
Sean Harvey 2008-04-19 01:21:48 +00:00
parent 01fe23fe2f
commit a47191c802

View File

@ -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 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 // @TODO encapsulate this into it's own method - it's the same code as the next() method anyway
$currentStep = new $startStepClass(); $currentStep = new $startStepClass();
$currentStep->start();
$currentStep->SessionID = $this->session->ID; $currentStep->SessionID = $this->session->ID;
$currentStep->write(); $currentStep->write();
$this->session->CurrentStepID = $currentStep->ID; $this->session->CurrentStepID = $currentStep->ID;
@ -260,7 +259,6 @@ abstract class MultiForm extends Form {
$nextStep->SessionID = $this->session->ID; $nextStep->SessionID = $this->session->ID;
} }
$nextStep->finish();
$nextStep->write(); $nextStep->write();
$this->session->CurrentStepID = $nextStep->ID; $this->session->CurrentStepID = $nextStep->ID;
$this->session->write(); $this->session->write();