/**
  * The below is some code to fix problems with embedded forms. jwage gave
  * me this as a fix until it's included in symfony -- cwage
  *
  * @return void
  * @author Jonathan Wage
  */
 public function processValues($values)
 {
     $values = (array) $values;
     $values = parent::processValues($values);
     $values = $this->processValuesEmbeddedForms($values);
     return $values;
 }