Index: /branches/1.1/lib/plugins/sfPropelPlugin/lib/propel/validator/sfValidatorPropelUnique.class.php =================================================================== --- /branches/1.1/lib/plugins/sfPropelPlugin/lib/propel/validator/sfValidatorPropelUnique.class.php (revision 9228) +++ /branches/1.1/lib/plugins/sfPropelPlugin/lib/propel/validator/sfValidatorPropelUnique.class.php (revision 9229) @@ -84,5 +84,5 @@ $object = call_user_func(array($this->getOption('model').'Peer', 'doSelectOne'), $criteria, $this->getOption('connection')); -var_dump($values); + // if no object or if we're updating the object, it's ok if (is_null($object) || $this->isUpdate($object, $values)) Index: /branches/1.1/lib/form/sfForm.class.php =================================================================== --- /branches/1.1/lib/form/sfForm.class.php (revision 9228) +++ /branches/1.1/lib/form/sfForm.class.php (revision 9229) @@ -28,15 +28,7 @@ $CSRFFieldName = '_csrf_token'; - /** - * @var sfWidgetFormSchema - */ - protected $widgetSchema = null; - - /** - * @var sfValidatorSchema - */ - protected $validatorSchema = null; - protected + $widgetSchema = null, + $validatorSchema = null, $errorSchema = null, $formField = null,