Browse Source

Fix handling of 'media' attribute on linked css (#1488789)

pull/45/merge
Aleksander Machniak 13 years ago
parent
commit
d9698de979
  1. 1
      CHANGELOG
  2. 2
      program/lib/washtml.php

1
CHANGELOG

@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
- Fix handling of 'media' attribute on linked css (#1488789)
- Fix excessive LFs at the end of composed message with top_posting=true (#1488797)
- Option to display attached images as thumbnails below message body
- Fix bug where leading blanks were stripped from quoted lines (#1488795)

2
program/lib/washtml.php

@ -102,7 +102,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', 'usemap', 'shape',
'cellborder', 'size', 'lang', 'dir', 'usemap', 'shape', 'media',
// attributes of form elements
'type', 'rows', 'cols', 'disabled', 'readonly', 'checked', 'multiple', 'value'
);

Loading…
Cancel
Save