Todd Wolaver wrote:
> Yes, I've just run into this myself and I ended up using
> the Zend_Controller_Front::getInstance()
>
> i.e.
> $this->_config = Zend_Controller_Front::getInstance()->getParam('config');
>
> Todd
>
Isn't this just like treating the front controller as if it's a
registry? If so, I would have thought that using Zend_Registry would
make it more explicit that this is what you are doing?
i.e. what's the benefit of using the FC's setParam() in these cases over
Zend_Registry?
Regards,
Rob...