[symfony-users] sfMailer and setLogger

2010-07-21 Thread Meijuh
Hi, I have written my own sfMailerMessageLoggerPlugin. My own logger overwrites sendPerformed() and does something. When use sfMailer::setLogger($myOwnLogger), then the sendPerformed() method is not invoked after sending a message. When I use sfMailer::registerPlugin($myOwnLogger), then the meth

[symfony-users] Possible bug found in sfWidgetFormChoice

2010-03-04 Thread Meijuh
When I use: $this->widgetSchema[1] = new sfWidgetFormChoice(array('default' => 'b', 'choices' => array('a' => 'a', 'b' => 'b'))); The option with value b will not get the selected attribute. But when I use: $this->widgetSchema[(1).'foo'] = new sfWidgetFormChoice(array('default' => 'b', 'choices'