Added check for invalid "contact-type"

This commit is contained in:
Michael 2017-02-22 22:25:35 +00:00
parent 194d80c326
commit c84565633e
1 changed files with 5 additions and 0 deletions

View File

@ -1592,6 +1592,11 @@ function get_gcontact_id($contact) {
*/ */
function update_gcontact($contact) { function update_gcontact($contact) {
// Check for invalid "contact-type" value
if (isset($contact['contact-type']) AND (intval($contact['contact-type']) < 0)) {
$contact['contact-type'] = 0;
}
/// @todo update contact table as well /// @todo update contact table as well
$gcontact_id = get_gcontact_id($contact); $gcontact_id = get_gcontact_id($contact);