diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-01-24 11:22:02 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-01-24 11:22:02 +0100 |
commit | c0dda0556c5e880f4a180cc1c13bb54c61b01c5a (patch) | |
tree | a71193f338e63f283d5a56a369a41f7e3ce06e09 /program/lib | |
parent | 0f4d09b9e8ceeba658d1d6613a51b7e5f0bf34b3 (diff) |
Allow single quote in style attribute values.
E.g. "font-family: 'Tahoma'" should not be removed.
Diffstat (limited to 'program/lib')
-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 5a5b3dc55..51f7930aa 100644 --- a/program/lib/Roundcube/rcube_washtml.php +++ b/program/lib/Roundcube/rcube_washtml.php @@ -184,7 +184,7 @@ class rcube_washtml '|rgb\(\s*[0-9]+\s*,\s*[0-9]+\s*,\s*[0-9]+\s*\)'. '|-?[0-9.]+\s*(em|ex|px|cm|mm|in|pt|pc|deg|rad|grad|ms|s|hz|khz|%)?'. '|#[0-9a-f]{3,6}'. - '|[a-z0-9", -]+'. + '|[a-z0-9"\', -]+'. ')\s*/i', $str, $match) ) { if ($match[2]) { |