PluginProbe
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder / 6.2.14
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder v6.2.14
6.2.14 6.2.13 6.2.12 6.2.10 6.2.11 6.2.9 6.2.8 6.2.7 6.2.6 6.2.5 6.2.4 6.2.3 6.2.2 3.6.22 3.6.31 3.6.40 3.6.41 3.6.42 3.6.50 3.6.51 3.6.60 3.6.61 3.6.62 3.6.64 3.6.65 All 196 releases
← All changes | app/Services/Form/FormService.php +2 -1 6.2.46.2.14 View file →
@@ -96,9 +96,10 @@
96 96 do_action('fluentform/inserted_new_form', $form->id, $data);
97 97
98 98 return $form;
99 99 } catch (Exception $e) {
100 - throw new Exception(esc_html($e->getMessage()));
100 + // phpcs:ignore WordPress.Security.EscapeOutput.ExceptionNotEscaped -- surfaced as JSON by the REST layer, never echoed as HTML
101 + throw new Exception($e->getMessage());
101 102 }
102 103 }
103 104
104 105 /**