diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-08-16 09:36:49 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-08-16 09:36:49 +0200 |
commit | 287eff030a7c6437495dc15badb125640cc4c3d3 (patch) | |
tree | ab7be360346c2a0ec7a9f45b41660a41c122561e /program | |
parent | 6ab9369eb194e4dde0cc830a84466dd240e95b23 (diff) |
Make $inline_parts property publicly available
Diffstat (limited to 'program')
-rw-r--r-- | program/include/rcube_message.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_message.php b/program/include/rcube_message.php index 9d36acf38..f550b574e 100644 --- a/program/include/rcube_message.php +++ b/program/include/rcube_message.php @@ -50,13 +50,13 @@ class rcube_message */ private $mime; private $opt = array(); - private $inline_parts = array(); private $parse_alternative = false; public $uid = null; public $headers; public $parts = array(); public $mime_parts = array(); + public $inline_parts = array(); public $attachments = array(); public $subject = ''; public $sender = null; |