Development

Changeset 9229

You must first sign up to be able to contribute.

Changeset 9229

Show
Ignore:
Timestamp:
05/24/08 17:51:28 (5 years ago)
Author:
nicolas
Message:

Reverted r9228 - wrong commit

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.1/lib/form/sfForm.class.php

    r9228 r9229  
    2828    $CSRFFieldName  = '_csrf_token'; 
    2929 
    30   /** 
    31    * @var sfWidgetFormSchema 
    32    */ 
    33   protected $widgetSchema    = null; 
    34    
    35   /** 
    36    * @var sfValidatorSchema 
    37    */ 
    38   protected $validatorSchema = null; 
    39      
    4030  protected 
     31    $widgetSchema    = null, 
     32    $validatorSchema = null, 
    4133    $errorSchema     = null, 
    4234    $formField       = null, 
  • branches/1.1/lib/plugins/sfPropelPlugin/lib/propel/validator/sfValidatorPropelUnique.class.php

    r9228 r9229  
    8484 
    8585    $object = call_user_func(array($this->getOption('model').'Peer', 'doSelectOne'), $criteria, $this->getOption('connection')); 
    86 var_dump($values); 
     86 
    8787    // if no object or if we're updating the object, it's ok 
    8888    if (is_null($object) || $this->isUpdate($object, $values))