[symfony-devs] Re: problem overriding webdebug toolbar

2009-06-03 Thread arri...@gmail.com
Thanks Fabian, this pointed me in the right direction. Now I have overriden initialize() in my application configuration and added the event connection there. Since I now connect the event after the propel plugin does, my 'db' panel now overwrites the one from the propel plugin :) public function

[symfony-devs] Re: problem overriding webdebug toolbar

2009-06-03 Thread Fabian Lange
Hi, this is because the db panel is not created by (core) symfony. It is created by the (core) PropelPlugin: sfWebDebugPanelPropel It listens to the debug.web.filter_logs event and then sets the DB Panel. so if you are setting the DB panel before proepl is active, propel overwrites you. I think