summaryrefslogtreecommitdiff
path: root/magpierss
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-10-25 04:55:59 +0100
committerAndrew Dolgov <[email protected]>2006-10-25 04:55:59 +0100
commitba5f89352f42d1b9d83426c09b536a0b61693d01 (patch)
tree49727140fa15c278a19bb9b0d95cd3057254f003 /magpierss
parent3f663e1be88e4c58bdb28246f7b7622cf2efbb66 (diff)
UNDO: Snoopy: revert cr-lf patch, breaks http auth
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 2cf785827..080e694a6 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";