diff options
author | Hugues Hiegel <root@paranoid> | 2015-03-11 16:46:33 +0100 |
---|---|---|
committer | Hugues Hiegel <root@paranoid> | 2015-03-11 16:46:33 +0100 |
commit | d09b64c6270c638059b003922db508f95d32d555 (patch) | |
tree | 199353af6fd707bc85679a7ec7eed8f0a43bb13f /program/lib | |
parent | 3ab1b1a6ba4f1f076f1e095bfecfc54054aaf935 (diff) |
[HACK] displays pictures inside HTML messages...
Diffstat (limited to 'program/lib')
-rw-r--r-- | program/lib/Roundcube/rcube_message.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_message.php b/program/lib/Roundcube/rcube_message.php index 8af334446..b076f95bf 100644 --- a/program/lib/Roundcube/rcube_message.php +++ b/program/lib/Roundcube/rcube_message.php @@ -162,7 +162,8 @@ class rcube_message public function get_part_url($mime_id, $embed = false) { if ($this->mime_parts[$mime_id]) - return $this->opt['get_url'] . '&_part=' . $mime_id . ($embed ? '&_embed=1&_mimeclass=' . $embed : ''); + #return $this->opt['get_url'] . '&_part=' . $mime_id . ($embed ? '&_embed=1&_mimeclass=' . $embed : ''); + return $this->opt['get_url'] . '&_part=' . $mime_id . ($embed ? '&_mimeclass=' . $embed : ''); else return false; } |