Fixed Missing location country var in client details

This commit is contained in:
johnnyq 2021-08-29 14:08:34 -04:00
parent 94577379d4
commit 7ad7a11fc3
1 changed files with 1 additions and 0 deletions

View File

@ -66,6 +66,7 @@ if(isset($_GET['client_id'])){
$location_city = $row['location_city'];
$location_state = $row['location_state'];
$location_zip = $row['location_zip'];
$location_country = $row['location_country'];
$location_phone = $row['location_phone'];
if(strlen($location_phone)>2){
$location_phone = substr($row['location_phone'],0,3)."-".substr($row['location_phone'],3,3)."-".substr($row['location_phone'],6,4);