From 62696b9ebebcf2d45b4c69dad7248293a0be003d Mon Sep 17 00:00:00 2001 From: johnnyq Date: Sat, 12 Apr 2025 11:58:32 -0400 Subject: [PATCH] Fix Mobile Country Code in contact list --- contacts.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contacts.php b/contacts.php index c6c657e9..53b49e80 100644 --- a/contacts.php +++ b/contacts.php @@ -319,7 +319,7 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()")); } else { $contact_phone_display = "
$contact_phone$contact_extension_display
"; } - $contact_mobile_country_code = nullable_htmlentities($row['contact_phone_country_code']); + $contact_mobile_country_code = nullable_htmlentities($row['contact_mobile_country_code']); $contact_mobile = nullable_htmlentities(formatPhoneNumber($row['contact_mobile'], $contact_mobile_country_code)); if (empty($contact_mobile)) { $contact_mobile_display = "";