Closed rozwell closed 11 years ago
It took me a while to figure out what's wrong, had:
$this->setValidator('xxx', new sfValidatorPropelChoice(array( // (...) 'query_methods' => 'someQueryMethod', )));
When it should be:
$this->setValidator('xxx', new sfValidatorPropelChoice(array( // (...) 'query_methods' => array('someQueryMethod'), )));
Now both examples will work.
It took me a while to figure out what's wrong, had:
When it should be:
Now both examples will work.