PluginProbe
Bit Form – Contact Form, Payment Forms, Multi Step Forms, Calculator & Custom Form Builder / 3.3.1
Bit Form – Contact Form, Payment Forms, Multi Step Forms, Calculator & Custom Form Builder v3.3.1
3.3.1 V-3.3.0 3.2.2 3.2.1 3.2.0 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 V3.0.3 V3.0.2 -3.0.1 V_3.0.0 1.1.1 1.1.8 1.2 1.3 1.4 1.4.18 1.5.2 1.9 2.0 2.10.0 2.10.1 All 138 releases
← All changes | includes/Admin/Form/AdminFormHandler.php +2 -2 V-3.3.03.3.1 View file →
@@ -1163,9 +1163,9 @@
1163 1163 'title' => $emailTemplatevalue->title,
1164 1164 'sub' => $emailTemplatevalue->sub,
1165 1165 'body' => $emailTemplatevalue->body,
1166 1166 'status' => isset($emailTemplatevalue->status) ? (int) $emailTemplatevalue->status : 1,
1167 - 'config' => !empty($emailTemplatevalue->config) ? json_decode($emailTemplatevalue->config) : (object) [],
1167 + 'config' => EmailTemplateHandler::normalizeConfig($emailTemplatevalue->config ?? null),
1168 1168 ];
1169 1169 }
1170 1170 }
1171 1171 // get all pdf template
@@ -1460,9 +1460,9 @@
1460 1460 'title' => $emailTemplatevalue->title,
1461 1461 'sub' => $emailTemplatevalue->sub,
1462 1462 'body' => $emailTemplatevalue->body,
1463 1463 'status' => isset($emailTemplatevalue->status) ? (int) $emailTemplatevalue->status : 1,
1464 - 'config' => !empty($emailTemplatevalue->config) ? json_decode($emailTemplatevalue->config) : (object) [],
1464 + 'config' => EmailTemplateHandler::normalizeConfig($emailTemplatevalue->config ?? null),
1465 1465 ];
1466 1466 }
1467 1467 }
1468 1468 $integrationHandler = new IntegrationHandler($formID);