diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-05-27 14:44:52 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-05-27 14:44:52 +0200 |
commit | 5bf83d551e3c748b8ba37ad6459a505730ec9877 (patch) | |
tree | 8bf0ac1b488899a081506eefa599279e2815a5fc /program/lib/Roundcube/rcube_washtml.php | |
parent | a3e01c0517ff345dcae04f9b0cb16d3f29acd2e1 (diff) |
Fix unintentional line-height style modification in HTML messages (#1489917)
Diffstat (limited to 'program/lib/Roundcube/rcube_washtml.php')
-rw-r--r-- | program/lib/Roundcube/rcube_washtml.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_washtml.php b/program/lib/Roundcube/rcube_washtml.php index 5f40eecf4..984294376 100644 --- a/program/lib/Roundcube/rcube_washtml.php +++ b/program/lib/Roundcube/rcube_washtml.php @@ -206,7 +206,7 @@ class rcube_washtml $value .= ' ' . $val; // #1488535: Fix size units, so width:800 would be changed to width:800px - if (preg_match('/(left|right|top|bottom|width|height)/i', $cssid) + if (preg_match('/^(left|right|top|bottom|width|height)/i', $cssid) && preg_match('/^[0-9]+$/', $val) ) { $value .= 'px'; |