summaryrefslogtreecommitdiff
path: root/roundcubemail/program/include/rcube_charset.php
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2012-02-28 10:35:52 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2012-02-28 10:35:52 +0000
commitc876798f06224f54da4cc0e11033f590e8b352de (patch)
tree057ff52665542786591dff0eb0f11348f50c491a /roundcubemail/program/include/rcube_charset.php
parent812675c975ab965967559ee3625258873fe22475 (diff)
Fix function call
git-svn-id: https://svn.roundcube.net/trunk@5922 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include/rcube_charset.php')
-rw-r--r--roundcubemail/program/include/rcube_charset.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_charset.php b/roundcubemail/program/include/rcube_charset.php
index 2b723ad3b..e52e82ec6 100644
--- a/roundcubemail/program/include/rcube_charset.php
+++ b/roundcubemail/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;
}
}