Remove leftover getFallBack in client pdf export in favor of ?: '-'

This commit is contained in:
johnnyq
2026-07-23 18:29:11 -04:00
parent 5846119ec9
commit c7b34fe107

View File

@@ -1494,8 +1494,8 @@ if (isset($_POST["export_client_pdf"])) {
</thead> </thead>
<tbody>"; <tbody>";
while ($row = mysqli_fetch_assoc($sql_contacts)) { while ($row = mysqli_fetch_assoc($sql_contacts)) {
$contact_name = escapeHtml(getFallBack($row["contact_name"])); $contact_name = escapeHtml($row["contact_name"]) ?: '-';
$contact_title = escapeHtml(getFallBack($row["contact_title"])); $contact_title = escapeHtml($row["contact_title"]) ?: '-';
$contact_department = escapeHtml($row["contact_department"]); $contact_department = escapeHtml($row["contact_department"]);
$contact_email = escapeHtml($row["contact_email"]); $contact_email = escapeHtml($row["contact_email"]);
$contact_phone_country_code = escapeHtml($row["contact_phone_country_code"]); $contact_phone_country_code = escapeHtml($row["contact_phone_country_code"]);