[fw-general] RE: [fw-mvc] CUSTOM_Controller_Plugin is loaded twice

2010-06-16 Thread Jachim Coudenys
Hi, You probably use some kind of forwarding in your controller. That is why it’s called twice. MvG, Jachim Coudenys Web Developer - Guideline Belgium Van: Enkhbilguun Erdenetsogt [mailto:enkhbilg...@beregu.com] Verzonden: maandag 14 juni 2010 11:23 Aan: fw-general@lists.zend.com; fw-...@lists.

[fw-general] Re: [fw-mvc] CUSTOM_Controller_Plugin is loaded twice

2010-06-15 Thread Patrick Figel
Where exactly are you executing var_dump("TESTING");? It's possible that the plugin event methods are executed more than once. Consider the following actions: public function fooAction() { echo 'fooAction()'; $this->_forward('bar'); } public function barAction()