ZF-12535: Bad condition in Zend_Http_Client_Adapter_Proxy
Description
I've found a problem in the Zend_Http_Client_Adapter_Proxy class http://framework.zend.com/svn/framework/…
Please see line 310, the current version (1.12.2) contains this
if (false !== $success) {
In version 1.12.0 it used to be
if (! $success) {
That mistake was made while cleaning that class.
Comments
Posted by Frank Brückner (frosch) on 2013-03-06T08:03:50.000+0000
Fixed on trunk (25272) and release-1.12 (25273)
Thanks to Adolfo!