From: Andrew Dolgov Date: Wed, 25 Oct 2006 03:55:59 +0000 (+0100) Subject: UNDO: Snoopy: revert cr-lf patch, breaks http auth X-Git-Tag: 1.2.5~16 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=ba5f89352f42d1b9d83426c09b536a0b61693d01;p=tt-rss.git UNDO: Snoopy: revert cr-lf patch, breaks http auth --- diff --git a/magpierss/extlib/Snoopy.class.inc b/magpierss/extlib/Snoopy.class.inc index 2cf78582..080e694a 100644 --- a/magpierss/extlib/Snoopy.class.inc +++ b/magpierss/extlib/Snoopy.class.inc @@ -506,7 +506,7 @@ class Snoopy if(!is_array($this->rawheaders)) $this->rawheaders = (array)$this->rawheaders; while(list($headerKey,$headerVal) = each($this->rawheaders)) - $headers .= $headerKey.": ".$headerVal; + $headers .= $headerKey.": ".$headerVal."\r\n"; } if(!empty($content_type)) { $headers .= "Content-type: $content_type";