summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2010-09-29 17:53:13 +0000
committeralecpl <alec@alec.pl>2010-09-29 17:53:13 +0000
commit33da0b48b343609a46e200afc814d75fba589057 (patch)
tree422a55197e63b28a7b190642d31d8b18f144dc23
parent5c461bada970c336616b0c03c9036f89cab21d0c (diff)
- Allow setting some washtml options from plugin (#1486578)
-rw-r--r--CHANGELOG1
-rw-r--r--program/steps/mail/func.inc14
2 files changed, 13 insertions, 2 deletions
diff --git a/CHANGELOG b/CHANGELOG
index b9506104b..f3f2b7963 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -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
-------------
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc
index d7c65236b..4dd6d8b55 100644
--- a/program/steps/mail/func.inc
+++ b/program/steps/mail/func.inc
@@ -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;