summaryrefslogtreecommitdiff
path: root/magpierss
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-10-25 03:06:06 +0100
committerAndrew Dolgov <[email protected]>2006-10-25 03:06:06 +0100
commit521d593af24deca4caeca3a65e2163a92e08e98d (patch)
tree6336f58d8fcfa41220df70481fbd1508f2d22f4f /magpierss
parentaff31ecf88a86951885d4d4c84040e63657f9325 (diff)
Snoopy: remove unneeded crlf from raw headers
Diffstat (limited to 'magpierss')
-rw-r--r--magpierss/extlib/Snoopy.class.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/magpierss/extlib/Snoopy.class.inc b/magpierss/extlib/Snoopy.class.inc
index 080e694a6..2cf785827 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";