]> git.wh0rd.org Git - tt-rss.git/commitdiff
magpie: charset instantiation fix
authorAndrew Dolgov <fox@madoka.spb.ru>
Wed, 22 Aug 2007 07:47:14 +0000 (08:47 +0100)
committerAndrew Dolgov <fox@madoka.spb.ru>
Wed, 22 Aug 2007 07:47:14 +0000 (08:47 +0100)
magpierss/rss_fetch.inc

index 126dc630a9e1e676587e1fe757d0c0b2a365c9d6..695d3b69e4031cbf7147c80f4210be9b42dcb037 100644 (file)
@@ -286,7 +286,7 @@ function _fetch_remote_file ($url, $headers = "" ) {
     Output:     parsed RSS object (see rss_parse)
 \*=======================================================================*/
 function _response_to_rss ($resp) {
-    $rss = new MagpieRSS( $resp->results, MAGPIE_OUTPUT_ENCODING, "UTF-8", false);
+    $rss = new MagpieRSS( $resp->results, MAGPIE_OUTPUT_ENCODING, MAGPIE_INPUT_ENCODING, MAGPIE_DETECT_ENCODING );
     
     // if RSS parsed successfully       
     if ( $rss and !$rss->ERROR) {