Private GIT

Skip to content
Snippets Groups Projects
Unverified Commit 10d97362 authored by Kevin Duret's avatar Kevin Duret Committed by GitHub
Browse files

fix(db): fix contact update (#6204)

parent dcdede71
Branches
No related tags found
No related merge requests found
......@@ -660,6 +660,7 @@ function updateContact($contact_id = null, $from_MC = false)
isset($ret["reach_api"]["reach_api"]) && $ret["reach_api"]["reach_api"] != null
? $rq .= "'" . $ret["reach_api"]["reach_api"] . "', "
: $rq .= "NULL, ";
$rq .= "reach_api_rt = ";
isset($ret["reach_api_rt"]["reach_api_rt"]) && $ret["reach_api_rt"]["reach_api_rt"] != null
? $rq .= "'" . $ret["reach_api_rt"]["reach_api_rt"] . "', "
: $rq .= "NULL, ";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment