Skip to content
Snippets Groups Projects
Commit c08e6f73 authored by bgm's avatar bgm Committed by Symbiotic Gitlab CI
Browse files

Fix Data Review single-row import

parent 8a566ce1
No related branches found
No related tags found
No related merge requests found
......@@ -53,7 +53,7 @@ function civicrm_api3_advimport_row_import($params) {
]);
}
else {
CRM_Core_DAO::executeQuery('UPDATE %1 SET import_error = NULL, import_status = 0 WHERE row = %1', [
CRM_Core_DAO::executeQuery('UPDATE %1 SET import_error = NULL, import_status = 0 WHERE row = %2', [
1 => [$advimport_table, 'MysqlColumnNameOrAlias'],
2 => [$row_id, 'Positive'],
]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment