summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2012-05-12 15:36:51 +0200
committerAleksander Machniak <alec@alec.pl>2012-05-12 15:36:51 +0200
commit02cf44e1838aca64e14921d30dc44d25a4d73b1c (patch)
tree46ccb174e481f842f2f18a5e9b27dd4cb2a435d7
parent6236838574ce57195cfa5947b3b9b389bbce1080 (diff)
Fix handling of "usemap" attribute (#1488472)
-rw-r--r--CHANGELOG1
-rw-r--r--program/lib/washtml.php2
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index ab289e6fa..d9313c0f1 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
+- Fix handling of "usemap" attribute (#1488472)
- Fix handling of some HTML tags e.g. IMG (#1488471)
- Use similar language as a fallback for plugin localization (#1488401)
- Fix issue where signature wasn't re-added on draft compose (#1488322)
diff --git a/program/lib/washtml.php b/program/lib/washtml.php
index daff5b5f4..4221abdef 100644
--- a/program/lib/washtml.php
+++ b/program/lib/washtml.php
@@ -101,7 +101,7 @@ class washtml
'cellpadding', 'valign', 'bgcolor', 'color', 'border', 'bordercolorlight',
'bordercolordark', 'face', 'marginwidth', 'marginheight', 'axis', 'border',
'abbr', 'char', 'charoff', 'clear', 'compact', 'coords', 'vspace', 'hspace',
- 'cellborder', 'size', 'lang', 'dir',
+ 'cellborder', 'size', 'lang', 'dir', 'usemap',
// attributes of form elements
'type', 'rows', 'cols', 'disabled', 'readonly', 'checked', 'multiple', 'value'
);