This commit is contained in:
Laurent Destailleur 2022-11-23 18:58:17 +01:00
parent 4d11b5db31
commit dd50854b05

View File

@ -3091,7 +3091,7 @@ class Adherent extends CommonObject
if ($listofids) {
$listofids .= ']';
}
$this->output .= ' ids='.$listofids;
$this->output .= ($listofids ? ' ids='.$listofids : '');
}
if ($nbko) {
$this->output .= ' - Canceled for '.$nbko.' member (no email or email sending error)';
@ -3114,7 +3114,7 @@ class Adherent extends CommonObject
if ($listofids) {
$listofids .= ']';
}
$this->output .= $listofids;
$this->output .= ($listofids ? ' ids='.$listofids : '');
}
}
}