This repository was archived by the owner on Sep 20, 2021. It is now read-only.

Description
When HTTP header is not valid, this line
|
list($name, $value) = explode(':', $header, 2); |
produce Undefined offset: 1
Can you add something like this
if(stripos($header, ':')) {
list($name, $value) = explode(':', $header, 2);
$this->_headers[strtolower($name)] = trim($value);
}
Want to back this issue? Post a bounty on it! We accept bounties via Bountysource.