ZF-9685: Call to undefined method Zend_Http_Client::close()
Description
Zend_Http_Client _openTempStream() calls "$this->close". But, it is not undefiend.
So errors occurred. "Fatal error: Call to undefined method Zend_Http_Client::close() in /usr/share/php/Zend/Http/Client.php on line 915"
Is this not "$this->getAdapter()->close()" ?
Comments
Posted by Michelangelo van Dam (dragonbe) on 2010-04-16T15:12:47.000+0000
added a close() method in the Zend_Http_Client class, including some tests
Posted by Shahar Evron (shahar) on 2010-04-19T11:45:44.000+0000
Re-did fix to call $this->adapter->close() instead, removed the newly-added close() method. Other than that all other modifications and unit tests by DragonBE were kept (thanks!)
Resolved in CS-21951, merged to release branch in CS-21952