mirror of
https://github.com/itflow-org/itflow
synced 2026-09-18 20:55:14 +00:00
Display Phone number Country Codes
This commit is contained in:
@@ -37,9 +37,9 @@ $contact_title = escapeHtml($row['contact_title']);
|
||||
$contact_department = escapeHtml($row['contact_department']);
|
||||
$contact_extension = escapeHtml($row['contact_extension']);
|
||||
$contact_phone_country_code = escapeHtml($row['contact_phone_country_code']);
|
||||
$contact_phone = escapeHtml(formatPhoneNumber($row['contact_phone'], $contact_phone_country_code));
|
||||
$contact_phone = escapeHtml(formatPhoneNumber($row['contact_phone'], $contact_phone_country_code, false));
|
||||
$contact_mobile_country_code = escapeHtml($row['contact_mobile_country_code']);
|
||||
$contact_mobile = escapeHtml(formatPhoneNumber($row['contact_mobile'], $contact_mobile_country_code));
|
||||
$contact_mobile = escapeHtml(formatPhoneNumber($row['contact_mobile'], $contact_mobile_country_code, false));
|
||||
$contact_email = escapeHtml($row['contact_email']);
|
||||
$contact_pin = escapeHtml($row['contact_pin']);
|
||||
$contact_photo = escapeHtml($row['contact_photo']);
|
||||
|
||||
@@ -21,10 +21,10 @@ $location_city = escapeHtml($row['location_city']);
|
||||
$location_state = escapeHtml($row['location_state']);
|
||||
$location_zip = escapeHtml($row['location_zip']);
|
||||
$location_phone_country_code = escapeHtml($row['location_phone_country_code']);
|
||||
$location_phone = escapeHtml(formatPhoneNumber($row['location_phone'], $location_phone_country_code));
|
||||
$location_phone = escapeHtml(formatPhoneNumber($row['location_phone'], $location_phone_country_code, false));
|
||||
$location_extension = escapeHtml($row['location_phone_extension']);
|
||||
$location_fax_country_code = escapeHtml($row['location_fax_country_code']);
|
||||
$location_fax = escapeHtml(formatPhoneNumber($row['location_fax'], $location_fax_country_code));
|
||||
$location_fax = escapeHtml(formatPhoneNumber($row['location_fax'], $location_fax_country_code, false));
|
||||
$location_hours = escapeHtml($row['location_hours']);
|
||||
$location_photo = escapeHtml($row['location_photo']);
|
||||
$location_notes = escapeHtml($row['location_notes']);
|
||||
|
||||
2
agent/modals/vendor/vendor_edit.php
vendored
2
agent/modals/vendor/vendor_edit.php
vendored
@@ -17,7 +17,7 @@ $vendor_description = escapeHtml($row['vendor_description']);
|
||||
$vendor_account_number = escapeHtml($row['vendor_account_number']);
|
||||
$vendor_contact_name = escapeHtml($row['vendor_contact_name']);
|
||||
$vendor_phone_country_code = escapeHtml($row['vendor_phone_country_code']);
|
||||
$vendor_phone = escapeHtml(formatPhoneNumber($row['vendor_phone'], $vendor_phone_country_code));
|
||||
$vendor_phone = escapeHtml(formatPhoneNumber($row['vendor_phone'], $vendor_phone_country_code, false));
|
||||
$vendor_extension = escapeHtml($row['vendor_extension']);
|
||||
$vendor_email = escapeHtml($row['vendor_email']);
|
||||
$vendor_website = escapeHtml($row['vendor_website']);
|
||||
|
||||
Reference in New Issue
Block a user