summaryrefslogtreecommitdiff
path: root/program/lib/Roundcube/rcube_message.php
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2014-11-04 15:28:27 +0100
committerAleksander Machniak <alec@alec.pl>2014-11-04 15:28:27 +0100
commit2883fcba2bf3fcff286a70c3629016a0c53a6803 (patch)
treeee260eef992e7f81494d31804b69f85746a8cf41 /program/lib/Roundcube/rcube_message.php
parent14094fca82dc4d78d6e8ebc1c7baec5e8c0ff77c (diff)
Move TNEF decoder class to the Roundcube Framework (#1490055)
So, for now all dependencies of the Framework can be installed with composer and we need only lib/Roundcube folder. des.inc was never required and is less important since we do encryption using openssl or mcrypt extensions.
Diffstat (limited to 'program/lib/Roundcube/rcube_message.php')
-rw-r--r--program/lib/Roundcube/rcube_message.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_message.php b/program/lib/Roundcube/rcube_message.php
index 3644d6b8e..169d00ce1 100644
--- a/program/lib/Roundcube/rcube_message.php
+++ b/program/lib/Roundcube/rcube_message.php
@@ -851,7 +851,7 @@ class rcube_message
{
// @TODO: attachment may be huge, handle body via file
$body = $this->get_part_body($part->mime_id);
- $tnef = new tnef_decoder;
+ $tnef = new rcube_tnef_decoder;
$tnef_arr = $tnef->decompress($body);
$parts = array();