From 20efa59fc9e4560262b1dbaa9e8c080546b0d413 Mon Sep 17 00:00:00 2001
From: thomascube <thomas@roundcube.net>
Date: Tue, 28 Feb 2012 05:35:52 -0500
Subject: [PATCH] Fix function call

---
 program/include/rcube_charset.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/program/include/rcube_charset.php b/program/include/rcube_charset.php
index 2b723ad..e52e82e 100644
--- a/program/include/rcube_charset.php
+++ b/program/include/rcube_charset.php
@@ -272,7 +272,7 @@
         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;
                 }
             }

--
Gitblit v1.9.1