ZF-157: why sending CRLF?

Description

In Zend_Http_Client incubator version, the _write() method is written,

    fwrite($socket, $request . "\r\n");

But, is CRLF needed here?

$request set $headers + "\r\n" + $body in Zend_Http_Client_Abstract::request() method, so I think it will be

    fwrite($socket, $request);

Please check it.

Comments

Issue fixed - please check again with revision 736

adding to release 0.1.4

I tested with revision 754, and it is OK. Thanks.