From: Andrew Dolgov Date: Wed, 25 Oct 2006 02:06:06 +0000 (+0100) Subject: Snoopy: remove unneeded crlf from raw headers X-Git-Tag: 1.2.5~19 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=521d593af24deca4caeca3a65e2163a92e08e98d;p=tt-rss.git Snoopy: remove unneeded crlf from raw headers --- diff --git a/magpierss/extlib/Snoopy.class.inc b/magpierss/extlib/Snoopy.class.inc index 080e694a..2cf78582 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."\r\n"; + $headers .= $headerKey.": ".$headerVal; } if(!empty($content_type)) { $headers .= "Content-type: $content_type";