thomascube
2006-02-04 58e3602a37cccab55f71fbf839b32fbc4322699c
program/lib/utf8.class.php
@@ -58,10 +58,10 @@
//Class definition
Class utf8{
  var $charset = CP1250;
  var $charset = "ISO-8859-1";
  var $ascMap = array();
  var $utfMap = array();
  // made PHP5 capable by RoundCube
  function __construct($charset="ISO-8859-1"){
    $this->loadCharset($charset);
@@ -75,7 +75,7 @@
  //Load charset
  function loadCharset($charset){
    global $utf8_maps;
    if (!is_file($utf8_maps[$charset]))
      {
      $this->onError(ERR_OPEN_MAP_FILE, "Failed to open map file for $charset");
@@ -170,4 +170,5 @@
  }
}
?>
?>