From 20efa59fc9e4560262b1dbaa9e8c080546b0d413 Mon Sep 17 00:00:00 2001 From: thomascube Date: Tue, 28 Feb 2012 10:35:52 +0000 Subject: Fix function call --- program/include/rcube_charset.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/program/include/rcube_charset.php b/program/include/rcube_charset.php index 2b723ad3b..e52e82ec6 100644 --- a/program/include/rcube_charset.php +++ b/program/include/rcube_charset.php @@ -272,7 +272,7 @@ class rcube_charset if ($from == 'UTF-8') { // @TODO: we need a function for UTF-7 (RFC2152) conversion if ($to == 'UTF7-IMAP' || $to == 'UTF-7') { - if ($_str = utf8_to_utf7imap($str)) { + if ($_str = self::utf8_to_utf7imap($str)) { return $_str; } } -- cgit v1.2.3