ZF-9064: Zend_Log::_constructFromConfig require_once fails on Zend_Log_Exception.php
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'
);
}
Comments
Posted by Benjamin Steininger (robo47) on 2010-02-02T13:17:16.000+0000
diff-file
Posted by Satoru Yoshida (satoruyoshida) on 2010-02-02T20:21:31.000+0000
Thank You for Report, Solved in SVN r20864.