Skip to content

Commit fad1420

Browse files
authored
Merge pull request #7 from RTIInternational/bugfix/FormDataNotSeparateBug
Bugfix/form data not separate bug
2 parents dfdcba5 + bd019fc commit fad1420

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,8 @@
2424

2525
## [1.2.3] - 2024-05-31
2626
## Changed
27-
- Fixed another issue with result saving. Fixes problem with response just coming through as "1".
27+
- Fixed another issue with result saving. Fixes problem with response just coming through as "1".
28+
29+
## [1.2.4] - 2024-09-06
30+
## Changed
31+
- Fixed an issue where form data that doesn't use separated data wasn't working.

ConditionalAPITriggerModule.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public function redcap_save_record($project_id, $record, $instrument, $event_id,
5353
$method = $apiMethods[$i];
5454

5555
$conn = curl_init($url);
56-
$formData = array();
56+
$formData = "";
5757

5858
curl_setopt($conn, CURLOPT_RETURNTRANSFER, true);
5959
if ($apiData[$i] != "") {

0 commit comments

Comments
 (0)