Development

Changeset 27709 for plugins/diemPlugin

You must first sign up to be able to contribute.

Show
Ignore:
Timestamp:
02/08/10 11:16:35 (3 years ago)
Author:
ornicar2
Message:

[Diem]
- removed form and filter for DmLock? model
- improved dmForm->changeToEmail method

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/diemPlugin/trunk/dmCorePlugin/lib/form/dmForm.php

    r27696 r27709  
    8181  public function changeToEmail($fieldName) 
    8282  { 
    83     $this->validatorSchema[$fieldName] = new sfValidatorEmail($this->validatorSchema[$fieldName]->getOptions()); 
     83    $this->validatorSchema[$fieldName] = new sfValidatorAnd(array( 
     84      $this->validatorSchema[$fieldName], 
     85      new sfValidatorEmail(), 
     86    )); 
    8487  } 
    8588