diff options
author | svncommit <devs@roundcube.net> | 2007-01-05 15:02:47 +0000 |
---|---|---|
committer | svncommit <devs@roundcube.net> | 2007-01-05 15:02:47 +0000 |
commit | 18a0df23fc4b60710ef724f9f4ad273a02c80830 (patch) | |
tree | e2966c33c66015792df879113857820da6cdbedb /program | |
parent | 462a9d991de33535def90be94450bd69abd4d536 (diff) |
Fix unquoted HTML attributes (closes #1484190)
Diffstat (limited to 'program')
-rw-r--r-- | program/steps/mail/func.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index 83f170d16..522a1c2bb 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -1252,6 +1252,7 @@ function rcmail_mod_html_body($body, $container_id) // parse link attributes and set correct target function rcmail_alter_html_link($in) { + $in = preg_replace('/=([^("|\s)]+)(\s|$)/', '="\1"', $in); $attrib = parse_attrib_string($in); if (stristr((string)$attrib['href'], 'mailto:')) |