mirror of https://github.com/itflow-org/itflow
Convert new lines to brs for contact notes
This commit is contained in:
parent
77597fd7a9
commit
ed0936059b
|
|
@ -1095,7 +1095,7 @@ if (isset($_GET['contact_id'])) {
|
||||||
while ($row = mysqli_fetch_array($sql_related_notes)) {
|
while ($row = mysqli_fetch_array($sql_related_notes)) {
|
||||||
$contact_note_id = intval($row['contact_note_id']);
|
$contact_note_id = intval($row['contact_note_id']);
|
||||||
$contact_note_type = nullable_htmlentities($row['contact_note_type']);
|
$contact_note_type = nullable_htmlentities($row['contact_note_type']);
|
||||||
$contact_note = nullable_htmlentities($row['contact_note']);
|
$contact_note = nl2br(nullable_htmlentities($row['contact_note']));
|
||||||
$note_by = nullable_htmlentities($row['user_name']);
|
$note_by = nullable_htmlentities($row['user_name']);
|
||||||
$contact_note_created_at = nullable_htmlentities($row['contact_note_created_at']);
|
$contact_note_created_at = nullable_htmlentities($row['contact_note_created_at']);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue