]> git.wh0rd.org - tt-rss.git/commitdiff
take two at fixing crlf issue in Snoopy, now with digest support
authorAndrew Dolgov <fox@madoka.spb.ru>
Thu, 26 Oct 2006 03:18:48 +0000 (04:18 +0100)
committerAndrew Dolgov <fox@madoka.spb.ru>
Thu, 26 Oct 2006 03:18:48 +0000 (04:18 +0100)
magpierss/extlib/Snoopy.class.inc

index 080e694a6f4c28e997970825374066bc6de90e11..fea182a22d49932aac56f468e8434d56c049d488 100644 (file)
@@ -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";
@@ -582,7 +582,7 @@ class Snoopy
                                
                                $this->_tried_digest = true;
                                
-                               $this->rawheaders["Authorization"]=$auth;
+                               $this->rawheaders["Authorization"]=$auth . "\r\n";
                                $this->user = "";
                                $this->pass = "";