beberlei / zf-doctrine

A Zend Framework 1.x and Doctrine 1.2 Integration - UNMAINTAINED
101 stars 21 forks source link

wrong typo in ZFDoctrine_Form_Model on line 383 #31

Open simukti opened 13 years ago

simukti commented 13 years ago

there is a wrong typo in ZFDoctrine_Form_Model on line 383

if ($subForm instanceof ZFDoctrine_Form_ModelSubForm) {
  $subForm->save($persist);
}

it should be:

if ($subForm instanceof ZFDoctrine_Form_Model_SubForm) {
  $subForm->save($persist);
}