ZF-5816: Wrongly capitalized class name in Zend_Amf_Request initialize method
Description
On line 92 of Zend_Amf_Request a deserializer is constructed.
Class name is wrongly capitalized and code fails on situation where require_once calls have been commented out for performance and system is relying on lazy loading via autoloader on a case sensitive filesystem.
$this->_deserializer = new Zend_Amf_Parse_AMF0_Deserializer($this->_inputStream);
Should be:
$this->_deserializer = new Zend_Amf_Parse_Amf0_Deserializer($this->_inputStream);
Comments
Posted by Wade Arnold (wadearnold) on 2009-03-24T13:01:38.000+0000
Issue has been resolved in the trunk. I will make sure to migrate it to the 1.7 release branch