Skip to content
Snippets Groups Projects
Commit 16404fbb authored by totten's avatar totten
Browse files

api/v3/utils - Fix bad variable reference which causes PHPUnit to crash

parent 9ebe1ac7
Branches
Tags
No related merge requests found
......@@ -539,7 +539,7 @@ function _civicrm_api3_dao_set_filter(&$dao, $params, $unique = TRUE, $entity) {
}
else {
if ($unique) {
$dao->$allfields[$field]['name'] = $params[$field];
$allfields[$field]['name'] = $params[$field];
}
else {
$dao->$field = $params[$field];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment