summaryrefslogtreecommitdiff
path: root/roundcubemail/program/lib
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-08-21 06:59:45 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-08-21 06:59:45 +0000
commitbd6faf5c6fd90a50d0f168d44159e0623e08d1ad (patch)
treebf5bfd404b91b7b1cb6db9431b3a493012eaed6c /roundcubemail/program/lib
parent4747368789bb50eb61db006cadb2a65c736aea08 (diff)
- removed PHP4 class constructors
git-svn-id: https://svn.roundcube.net/trunk@1664 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/lib')
-rw-r--r--roundcubemail/program/lib/utf8.class.php6
1 files changed, 0 insertions, 6 deletions
diff --git a/roundcubemail/program/lib/utf8.class.php b/roundcubemail/program/lib/utf8.class.php
index 3371c25a8..cd5be8395 100644
--- a/roundcubemail/program/lib/utf8.class.php
+++ b/roundcubemail/program/lib/utf8.class.php
@@ -68,16 +68,10 @@ Class utf8{
var $ascMap = array();
var $utfMap = array();
- // made PHP5 capable by RoundCube
function __construct($charset="ISO-8859-1"){
$this->loadCharset($charset);
}
- //Constructor
- function utf8($charset="ISO-8859-1"){
- $this->__construct($charset);
- }
-
//Load charset
function loadCharset($charset){
global $utf8_maps;