* Tracker: fix bug regarding the save of replys that could be regarded as empty (only span with style, no content)

This commit is contained in:
Klaus Leithoff 2013-05-08 09:58:30 +00:00
parent 03a674e7bd
commit 00234be893

View File

@ -1079,6 +1079,7 @@ class translation
'@&(trade|#8482);@i', // trade
'@'@i', // singleQuote
'@(\xc2\xa0)@', // nbsp or tab (encoded windows-style)
'@(\xe2\x80\x8b)@', // ZERO WIDTH SPACE
);
$Replace = array ('',
'"',
@ -1094,6 +1095,7 @@ class translation
'(TM)',// trade
"'",
' ',
'',
);
$_html = preg_replace($Rules, $Replace, $_html);