diff options
author | alecpl <alec@alec.pl> | 2011-11-30 11:35:43 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-11-30 11:35:43 +0000 |
commit | 0597586b89e86e8b4e22080d4c453475057b47b5 (patch) | |
tree | c5228263a48560439d4c8468dd94ae127cf2abf9 /program/steps/mail/func.inc | |
parent | 230ccbaef045d9a355e4f24921e622200dd64398 (diff) |
- Applied fixes from trunk up to r5512
Diffstat (limited to 'program/steps/mail/func.inc')
-rw-r--r-- | program/steps/mail/func.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index 8407b06cd..c070dad3a 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -550,7 +550,7 @@ function rcmail_check_safe(&$message) * @param array CID map replaces (inline images) * @return string Clean HTML */ -function rcmail_wash_html($html, $p = array(), $cid_replaces) +function rcmail_wash_html($html, $p, $cid_replaces) { global $REMOTE_OBJECTS; @@ -1052,7 +1052,7 @@ function rcmail_message_body($attrib) ) { $out .= html::tag('hr') . html::p(array('align' => "center"), html::img(array( - 'src' => $MESSAGE->get_part_url($attach_prop->mime_id), + 'src' => $MESSAGE->get_part_url($attach_prop->mime_id, true), 'title' => $attach_prop->filename, 'alt' => $attach_prop->filename, ))); |