ZF-8331: Constructor of Zend_Navigation_Page referst to an undefined variable $config when passed a Zend_Config object.
Description
If a Zend_Config object is passed to the constructor of Zend_Navigation_Page it will call
$this->setConfig($config)
but $config ist not initalized here, the correct call should be
$this->setConfig($options);
Comments
Posted by Satoru Yoshida (satoruyoshida) on 2009-11-18T21:22:54.000+0000
Solved in SVN r19023