From 90f5c8ad57bd297955039fbeb9c1a3469c0e33a8 Mon Sep 17 00:00:00 2001 From: johnnyq Date: Wed, 26 Mar 2025 18:39:45 -0400 Subject: [PATCH] Simplify getFallBack function to just fallback on - instead N/A --- functions.php | 2 +- post/user/client.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/functions.php b/functions.php index 293e9989..82e1b682 100644 --- a/functions.php +++ b/functions.php @@ -1502,7 +1502,7 @@ function logAuth($status, $details) { // Helper function for missing data fallback function getFallback($data) { - return !empty($data) ? $data : 'N/A'; + return !empty($data) ? $data : '-'; } /** diff --git a/post/user/client.php b/post/user/client.php index 9feb869d..6b00bb12 100644 --- a/post/user/client.php +++ b/post/user/client.php @@ -828,8 +828,8 @@ if (isset($_POST['export_client_pdf'])) {