summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2012-02-28 10:35:52 +0000
committerthomascube <thomas@roundcube.net>2012-02-28 10:35:52 +0000
commit20efa59fc9e4560262b1dbaa9e8c080546b0d413 (patch)
tree32ca4ce2b44a259b71d1b879c476d1fb47b199db
parent669fdf4a8434f241e008d949ba3e8ebe19708098 (diff)
Fix function call
-rw-r--r--program/include/rcube_charset.php2
1 files changed, 1 insertions, 1 deletions
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;
}
}