Fix some of the elements in the contacts array.

This commit is contained in:
markjcrane
2016-03-24 21:43:03 -06:00
parent 1807b37872
commit 459a5931fa

View File

@@ -549,10 +549,10 @@ include "root.php";
$contacts[$uuid]['contact_category'] = $row['contact_category'];
$contacts[$uuid]['contact_organization'] = $row['contact_organization'];
$contacts[$uuid]['contact_name_given'] = $row['contact_name_given'];
$contacts[$uuid]['contact_name_family'] = $row['contact_name_given'];
$contacts[$uuid]['contact_name_family'] = $row['contact_name_family'];
$contacts[$uuid]['phone_label'] = $row['phone_label'];
$contacts[$uuid]['phone_number'] = $row['phone_number'];
$contacts[$uuid]['phone_extension'] = $row['contact_name_given'];
$contacts[$uuid]['phone_extension'] = $row['phone_extension'];
}
}
}
@@ -587,10 +587,10 @@ include "root.php";
$contacts[$uuid]['contact_category'] = $row['contact_category'];
$contacts[$uuid]['contact_organization'] = $row['contact_organization'];
$contacts[$uuid]['contact_name_given'] = $row['contact_name_given'];
$contacts[$uuid]['contact_name_family'] = $row['contact_name_given'];
$contacts[$uuid]['contact_name_family'] = $row['contact_name_family'];
$contacts[$uuid]['phone_label'] = $row['phone_label'];
$contacts[$uuid]['phone_number'] = $row['phone_number'];
$contacts[$uuid]['phone_extension'] = $row['contact_name_given'];
$contacts[$uuid]['phone_extension'] = $row['phone_extension'];
}
}
}