diff --git a/phpgwapi/inc/class.translation.inc.php b/phpgwapi/inc/class.translation.inc.php index 856b7de703..4d1a0997c4 100644 --- a/phpgwapi/inc/class.translation.inc.php +++ b/phpgwapi/inc/class.translation.inc.php @@ -1080,6 +1080,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 ('', '"', @@ -1095,6 +1096,7 @@ class translation '(TM)',// trade "'", ' ', + '', ); $_html = preg_replace($Rules, $Replace, $_html);