summaryrefslogtreecommitdiff
path: root/program/lib/Roundcube/rcube_message.php
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2014-11-16 14:04:53 +0100
committerAleksander Machniak <alec@alec.pl>2014-11-16 14:04:53 +0100
commit9e4246d9571481fe7b80227b1e23dc013771c5af (patch)
treea051a22d8ecda4a648adcfe11504648f57f60e2a /program/lib/Roundcube/rcube_message.php
parent07280e764357fe844c18beb9ada772956735b49e (diff)
Code improvements and fixes (mostly unused variables and methods)
Diffstat (limited to 'program/lib/Roundcube/rcube_message.php')
-rw-r--r--program/lib/Roundcube/rcube_message.php6
1 files changed, 0 insertions, 6 deletions
diff --git a/program/lib/Roundcube/rcube_message.php b/program/lib/Roundcube/rcube_message.php
index 169d00ce1..20329a7f1 100644
--- a/program/lib/Roundcube/rcube_message.php
+++ b/program/lib/Roundcube/rcube_message.php
@@ -550,12 +550,6 @@ class rcube_message
else if ($mimetype == 'multipart/alternative'
&& is_array($structure->parts) && count($structure->parts) > 1
) {
- $plain_part = null;
- $html_part = null;
- $print_part = null;
- $related_part = null;
- $attach_part = null;
-
// get html/plaintext parts, other add to attachments list
foreach ($structure->parts as $p => $sub_part) {
$sub_mimetype = $sub_part->mimetype;