mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-29 03:13:40 +01:00
Consider whitespaces when trying to translate <, >, <= and >= signs in HTML:
- Fix some mails get cut off after switching to plain-text mode
This commit is contained in:
parent
ee7fb506f3
commit
1debc2a452
@ -320,10 +320,10 @@ class Html
|
||||
12 => '/<blockquote>/',
|
||||
13 => '~</blockquote>~si',
|
||||
14 => '~<blockquote[^>]*>~si',
|
||||
15 => '/<=([1234567890])/',
|
||||
16 => '/>=([1234567890])/',
|
||||
17 => '/<([1234567890])/',
|
||||
18 => '/>([1234567890])/',
|
||||
15 => '/<=\s*([1234567890])/',
|
||||
16 => '/>=\s*([1234567890])/',
|
||||
17 => '/<\s*([1234567890])/',
|
||||
18 => '/>\s*([1234567890])/',
|
||||
);
|
||||
$Replace = array (
|
||||
0 => "\r\n",
|
||||
|
Loading…
Reference in New Issue
Block a user