fix forwarding of parameters
This commit is contained in:
parent
84e1b1196e
commit
42266cee98
1 changed files with 2 additions and 2 deletions
|
@ -71,8 +71,8 @@ function civicrm_api3_twingle_form_Get(array $params) {
|
|||
'is_active' => 1,
|
||||
'campaign_type_id' => "twingle_project"
|
||||
];
|
||||
foreach($params as $param) {
|
||||
array_push($request, $param);
|
||||
foreach($params as $key => $param) {
|
||||
$request[$key] = $param;
|
||||
}
|
||||
|
||||
try {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue