This commit is contained in:
Sean Harvey 2009-01-27 10:44:40 +00:00
parent c78159c8ac
commit 7e9d014eee

View File

@ -55,7 +55,8 @@ class MultiFormSession extends DataObject {
// delete dependent form steps and relation
$steps = $this->FormSteps();
if($steps) foreach($steps as $step) {
$steps->remove($step); // @TODO not sure if this is required (does delete() remove the relation too?)
$steps->remove($step); // @TODO not sure if this is required (does delete() remove the relation too?)
$step->destroy();
$step->delete();
}