Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions forms-3rdparty-integration.php
Original file line number Diff line number Diff line change
Expand Up @@ -563,6 +563,8 @@ public function send($submission, $form, $service, $sid, $debug) {
if(!is_array($post[$third])) {
$post[$third] = array($post[$third]);
}
// Radio and checkboxes are being sent as Arrays, converting them to a string:
if(is_array($input)) $input = implode($service['delim'], $input);
$post[$third] []= $input;
}
else {
Expand Down