Changeset 1627

Show
Ignore:
Timestamp:
01/06/2007 06:50:58 PM (2 years ago)
Author:
jeena
Message:

disabled html_entity_decode from utf-8

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/xmlrpc.php

    r1626 r1627  
    110110              $utf8 = 'application/xhtml+xml' == strtolower(trim($s->getResponseHeader("Content-Type"))); 
    111111 
    112             $this->title = empty($title[1]) ? $this->sourceURI : html_entity_decode($utf8 ? utf8_decode($title[1]) : $title[1]); 
     112            $this->title = empty($title[1]) ? $this->sourceURI : $utf8 ? utf8_decode($title[1]) : html_entity_decode($title[1]); 
    113113        } 
    114114