Merge branch '17.0' of git@github.com:Dolibarr/dolibarr.git into develop

This commit is contained in:
Laurent Destailleur
2023-03-27 18:32:25 +02:00
11 changed files with 116 additions and 16 deletions

View File

@@ -588,6 +588,9 @@ class FunctionsLibTest extends PHPUnit\Framework\TestCase
$input='This is a text with accent é';
$after=dol_textishtml($input);
$this->assertTrue($after, 'Test with a é');
$input='<i class="abc">xxx</i>';
$after=dol_textishtml($input);
$this->assertTrue($after, 'Test with i tag and class;');
// False
$input='xxx < br>';