Details
Description
Instead of
if (!is_array($config) || empty($config)) { require_once 'Zend_Log_Exception.php'; throw new Zend_Log_Exception( 'Configuration must be an array or instance of Zend_Config' ); }
it should be
if (!is_array($config) || empty($config)) { require_once 'Zend/Log/Exception.php'; throw new Zend_Log_Exception( 'Configuration must be an array or instance of Zend_Config' ); }
diff-file