Fix the Contact CSV import so it will import the phone number.

This commit is contained in:
markjcrane 2015-10-19 20:37:13 -06:00
parent 5d3ecc30c8
commit c22b64433c
1 changed files with 1 additions and 1 deletions

View File

@ -299,7 +299,7 @@ else {
$sql .= (($row['phone_type_text']) ? 1 : 0).", ";
$sql .= "'".$row['phone_label']."', ";
$sql .= "'".$row['phone_number']."', ";
$sql .= "'".$row['phone_description']."', ";
$sql .= "'".$row['phone_description']."' ";
$sql .= ")";
$db->exec(check_sql($sql));
unset($sql);