- Allow setting some washtml options from plugin (#1486578)

release-0.6
alecpl 14 years ago
parent 5c461bada9
commit 33da0b48b3

@ -8,6 +8,7 @@ CHANGELOG Roundcube Webmail
- Add option to "Return receipt" will be always checked (#1486352)
- Fix HTML to plain text conversion doesn't handle citation blocks (#1486921)
- Use custom sorting when SORT is disabled by IMAP admin (#1486959)
- Allow setting some washtml options from plugin (#1486578)
RELEASE 0.4.1
-------------

@ -695,11 +695,21 @@ function rcmail_wash_html($html, $p = array(), $cid_replaces)
$wash_opts['html_attribs'] = array('rel','type');
}
// overwrite washer options with options from plugins
if (isset($p['html_elements']))
$wash_opts['html_elements'] = $p['html_elements'];
if (isset($p['html_attribs']))
$wash_opts['html_attribs'] = $p['html_attribs'];
// initialize HTML washer
$washer = new washtml($wash_opts);
$washer->add_callback('form', 'rcmail_washtml_callback');
if (!$p['skip_washer_form_callback'])
$washer->add_callback('form', 'rcmail_washtml_callback');
// allow CSS styles, will be sanitized by rcmail_washtml_callback()
$washer->add_callback('style', 'rcmail_washtml_callback');
if (!$p['skip_washer_style_callback'])
$washer->add_callback('style', 'rcmail_washtml_callback');
$html = $washer->wash($html);
$REMOTE_OBJECTS = $washer->extlinks;

Loading…
Cancel
Save