diff --git a/htdocs/comm/mailing/list.php b/htdocs/comm/mailing/list.php
index ecde836c428..757b6373f3f 100644
--- a/htdocs/comm/mailing/list.php
+++ b/htdocs/comm/mailing/list.php
@@ -277,7 +277,7 @@ if ($resql) {
print '';
// Title
- print '
'.$obj->title.' | ';
+ print ''.dol_escape_htmltag($obj->title).' | ';
// Date creation
print '';
@@ -286,7 +286,7 @@ if ($resql) {
// Nb of email
if (!$filteremail) {
- print ' | ';
+ print ' | ';
$nbemail = $obj->nbemail;
/*if ($obj->statut != 3 && !empty($conf->global->MAILING_LIMIT_SENDBYWEB) && $conf->global->MAILING_LIMIT_SENDBYWEB < $nbemail)
{
|