FIX replace <br /> by <br>

This commit is contained in:
VESSILLER 2019-11-05 15:13:44 +01:00
parent 668bb0cb86
commit fefb4a7f95

View File

@ -3630,7 +3630,7 @@ class Propal extends CommonObject
$txttoshow .= dol_string_nohtmltag($this->note_private, 1);
}
if (!empty($this->note_public)) {
if (!empty($txttoshow)) $txttoshow .= '<br />';
if (!empty($txttoshow)) $txttoshow .= '<br>';
$txttoshow .= dol_string_nohtmltag($this->note_public, 1);
}
}