I think it's because of this change: (Zend/Application/Module/Bootstrap.php)
Index: Bootstrap.php
===================================================================
--- Bootstrap.php (revision 15357)
+++ Bootstrap.php (revision 15356)
@@ -51,7 +51,7 @@
*/
public function __construct($application)
{
- parent::__construct($application);
+ $this->setApplication($application);
$key = strtolower($this->getModuleName());
if ($application->hasOption($key)) {
I can't get PDT's debugger to work, but my guess is that the modules plugin
pulls all the options from the application bootstrap including the
resources. Since the module bootstrap is a child class of BootstrapAbstract,
during bootstrap() it executes all the plugins again including the modules
plugin, which runs all the module bootstraps again, which inherits and
executes all plugins again, and so on.
-- Mon
On Sat, May 9, 2009 at 8:05 PM, j.padron <[email protected]> wrote:
>
> Hi,
>
> Same problem here. It's related to
> http://framework.zend.com/issues/browse/ZF-6545
> http://framework.zend.com/issues/browse/ZF-6545 . There, there is a
> modular
> structure to reproduce the fail.
>
> Thanks
> --
> View this message in context:
> http://www.nabble.com/Adding-Zend_Application_Module_Bootstrap-file-causes-application-to-fail-tp23457724p23459923.html
> Sent from the Zend Framework mailing list archive at Nabble.com.
>
>