BUGFIX Disable security token inherited from Form. We do not require this as we tie a MultiForm instance to a MultiFormSession via a URL parameter

This commit is contained in:
Sean Harvey 2008-07-04 01:07:33 +00:00
parent 58b7bb2210
commit f362ed07be

View File

@ -124,6 +124,9 @@ abstract class MultiForm extends Form {
if($currentStep->loadData()) {
$this->loadDataFrom($currentStep->loadData());
}
// Disable security token - we tie a form to a session ID so this is not required
$this->disableSecurityToken();
}
/**