Details
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);
Issue has been resolved in the trunk. I will make sure to migrate it to the 1.7 release branch