From 95987c3943bed445555c0dc84986a56792f7ac4c Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Thu, 21 Aug 2008 02:59:45 -0400
Subject: [PATCH] - removed PHP4 class constructors
---
program/lib/utf8.class.php | 6 ------
1 files changed, 0 insertions(+), 6 deletions(-)
diff --git a/program/lib/utf8.class.php b/program/lib/utf8.class.php
index 3371c25..cd5be83 100644
--- a/program/lib/utf8.class.php
+++ b/program/lib/utf8.class.php
@@ -68,16 +68,10 @@
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;
--
Gitblit v1.9.1