Changeset 9229
- Timestamp:
- 05/24/08 17:51:28 (5 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.1/lib/form/sfForm.class.php
r9228 r9229 28 28 $CSRFFieldName = '_csrf_token'; 29 29 30 /**31 * @var sfWidgetFormSchema32 */33 protected $widgetSchema = null;34 35 /**36 * @var sfValidatorSchema37 */38 protected $validatorSchema = null;39 40 30 protected 31 $widgetSchema = null, 32 $validatorSchema = null, 41 33 $errorSchema = null, 42 34 $formField = null, branches/1.1/lib/plugins/sfPropelPlugin/lib/propel/validator/sfValidatorPropelUnique.class.php
r9228 r9229 84 84 85 85 $object = call_user_func(array($this->getOption('model').'Peer', 'doSelectOne'), $criteria, $this->getOption('connection')); 86 var_dump($values); 86 87 87 // if no object or if we're updating the object, it's ok 88 88 if (is_null($object) || $this->isUpdate($object, $values))