thomascube
2008-06-04 65cc1c196f0aff83a6c9db7b6e3a36630b66392d
program/lib/washtml.php
@@ -187,7 +187,8 @@
    //Charset seems to be ignored (probably if defined in the HTML document)
    $node = new DOMDocument('1.0', $config['charset']);
    $full = true;
    $html = mb_convert_encoding($html, 'HTML-ENTITIES', 'UTF-8');
    if (function_exists('mb_convert_encoding'))
      $html = mb_convert_encoding($html, 'HTML-ENTITIES', $config['charset']);
    @$node->loadHTML($html);
    return self::dumpHtml($node, $config, $full);
  }