Skip to content

Commit

Permalink
Merge branch 'hotfix/response_isheader_checking' of https://github.co…
Browse files Browse the repository at this point in the history
…m/sasezaki/zf2 into hotfix/http-response-isheader
  • Loading branch information
weierophinney committed Apr 3, 2012
2 parents 9eae6f8 + f9c4fad commit b259e32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/Zend/Http/Response.php
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ public static function fromString($string)
while ($lines) {
$nextLine = array_shift($lines);

if ($nextLine == '') {
if ($isHeader && $nextLine == '') {
$isHeader = false;
continue;
}
Expand Down

0 comments on commit b259e32

Please sign in to comment.