"white-space: nowrap" für span-Obfuskierung übernommen

This commit is contained in:
Carsten Götzinger 2015-08-13 09:55:03 +02:00
parent c79d6e41f0
commit 81ae92763e
1 changed files with 2 additions and 2 deletions

View File

@ -508,7 +508,7 @@ class Aeo extends \System {
//$css .= '*>.obfuscated { unicode-bidi: -moz-isolate-override !important; }';
break;
case 'nullspan':
$css .= 'span.obfuscated { display: none; }';
$css .= 'span.obfuscated { display: none; white-space: nowrap;}';
break;
}
$css .= "\n</style>";
@ -586,7 +586,7 @@ class Aeo extends \System {
}
if ($includeCss) {
return $email1.'<span style="display: none;">null</span>'.$email2.'&#64;'.$arrEmail[1];
return $email1.'<span style="display: none; white-space: nowrap;">null</span>'.$email2.'&#64;'.$arrEmail[1];
}
return $email1.'<span class="obfuscated">null</span>'.$email2.'&#64;'.$arrEmail[1];
}