Contact Form Plugin – Fastest Contact Form Builder Plugin for WordPress by Fluent Forms - Version 4.3.20

Version Description

(Date: October 22, 2022) = - Fixes Date / Time field config bug

Download this release

Release Info

Developer adreastrian
Plugin Icon 128x128 Contact Form Plugin – Fastest Contact Form Builder Plugin for WordPress by Fluent Forms
Version 4.3.20
Comparing to
See all releases

Code changes from version 4.3.19 to 4.3.20

Files changed (132) hide show
  1. app/Services/FormBuilder/Components/DateTime.php +2 -2
  2. app/Services/Spout/Autoloader/Psr4Autoloader.php +0 -0
  3. app/Services/Spout/Autoloader/autoload.php +0 -0
  4. app/Services/Spout/Common/Escaper/CSV.php +0 -0
  5. app/Services/Spout/Common/Escaper/EscaperInterface.php +0 -0
  6. app/Services/Spout/Common/Escaper/ODS.php +0 -0
  7. app/Services/Spout/Common/Escaper/XLSX.php +0 -0
  8. app/Services/Spout/Common/Exception/EncodingConversionException.php +0 -0
  9. app/Services/Spout/Common/Exception/IOException.php +0 -0
  10. app/Services/Spout/Common/Exception/InvalidArgumentException.php +0 -0
  11. app/Services/Spout/Common/Exception/SpoutException.php +0 -0
  12. app/Services/Spout/Common/Exception/UnsupportedTypeException.php +0 -0
  13. app/Services/Spout/Common/Helper/EncodingHelper.php +0 -0
  14. app/Services/Spout/Common/Helper/FileSystemHelper.php +0 -0
  15. app/Services/Spout/Common/Helper/GlobalFunctionsHelper.php +0 -0
  16. app/Services/Spout/Common/Helper/StringHelper.php +0 -0
  17. app/Services/Spout/Common/Singleton.php +0 -0
  18. app/Services/Spout/Common/Type.php +0 -0
  19. app/Services/Spout/Reader/AbstractReader.php +0 -0
  20. app/Services/Spout/Reader/CSV/Reader.php +0 -0
  21. app/Services/Spout/Reader/CSV/ReaderOptions.php +0 -0
  22. app/Services/Spout/Reader/CSV/RowIterator.php +0 -0
  23. app/Services/Spout/Reader/CSV/Sheet.php +0 -0
  24. app/Services/Spout/Reader/CSV/SheetIterator.php +0 -0
  25. app/Services/Spout/Reader/Common/ReaderOptions.php +0 -0
  26. app/Services/Spout/Reader/Common/XMLProcessor.php +0 -0
  27. app/Services/Spout/Reader/Exception/IteratorNotRewindableException.php +0 -0
  28. app/Services/Spout/Reader/Exception/NoSheetsFoundException.php +0 -0
  29. app/Services/Spout/Reader/Exception/ReaderException.php +0 -0
  30. app/Services/Spout/Reader/Exception/ReaderNotOpenedException.php +0 -0
  31. app/Services/Spout/Reader/Exception/SharedStringNotFoundException.php +0 -0
  32. app/Services/Spout/Reader/Exception/XMLProcessingException.php +0 -0
  33. app/Services/Spout/Reader/IteratorInterface.php +0 -0
  34. app/Services/Spout/Reader/ODS/Helper/CellValueFormatter.php +0 -0
  35. app/Services/Spout/Reader/ODS/Helper/SettingsHelper.php +0 -0
  36. app/Services/Spout/Reader/ODS/Reader.php +0 -0
  37. app/Services/Spout/Reader/ODS/ReaderOptions.php +0 -0
  38. app/Services/Spout/Reader/ODS/RowIterator.php +0 -0
  39. app/Services/Spout/Reader/ODS/Sheet.php +0 -0
  40. app/Services/Spout/Reader/ODS/SheetIterator.php +0 -0
  41. app/Services/Spout/Reader/ReaderFactory.php +0 -0
  42. app/Services/Spout/Reader/ReaderInterface.php +0 -0
  43. app/Services/Spout/Reader/SheetInterface.php +0 -0
  44. app/Services/Spout/Reader/Wrapper/XMLInternalErrorsHelper.php +0 -0
  45. app/Services/Spout/Reader/Wrapper/XMLReader.php +0 -0
  46. app/Services/Spout/Reader/XLSX/Helper/CellHelper.php +0 -0
  47. app/Services/Spout/Reader/XLSX/Helper/CellValueFormatter.php +0 -0
  48. app/Services/Spout/Reader/XLSX/Helper/DateFormatHelper.php +0 -0
  49. app/Services/Spout/Reader/XLSX/Helper/SharedStringsCaching/CachingStrategyFactory.php +0 -0
  50. app/Services/Spout/Reader/XLSX/Helper/SharedStringsCaching/CachingStrategyInterface.php +0 -0
  51. app/Services/Spout/Reader/XLSX/Helper/SharedStringsCaching/FileBasedStrategy.php +0 -0
  52. app/Services/Spout/Reader/XLSX/Helper/SharedStringsCaching/InMemoryStrategy.php +0 -0
  53. app/Services/Spout/Reader/XLSX/Helper/SharedStringsHelper.php +0 -0
  54. app/Services/Spout/Reader/XLSX/Helper/SheetHelper.php +0 -0
  55. app/Services/Spout/Reader/XLSX/Helper/StyleHelper.php +0 -0
  56. app/Services/Spout/Reader/XLSX/Reader.php +0 -0
  57. app/Services/Spout/Reader/XLSX/ReaderOptions.php +0 -0
  58. app/Services/Spout/Reader/XLSX/RowIterator.php +0 -0
  59. app/Services/Spout/Reader/XLSX/Sheet.php +0 -0
  60. app/Services/Spout/Reader/XLSX/SheetIterator.php +0 -0
  61. app/Services/Spout/Writer/AbstractMultiSheetsWriter.php +0 -0
  62. app/Services/Spout/Writer/AbstractWriter.php +0 -0
  63. app/Services/Spout/Writer/CSV/Writer.php +0 -0
  64. app/Services/Spout/Writer/Common/Helper/AbstractStyleHelper.php +0 -0
  65. app/Services/Spout/Writer/Common/Helper/CellHelper.php +0 -0
  66. app/Services/Spout/Writer/Common/Helper/ZipHelper.php +0 -0
  67. app/Services/Spout/Writer/Common/Internal/AbstractWorkbook.php +0 -0
  68. app/Services/Spout/Writer/Common/Internal/WorkbookInterface.php +0 -0
  69. app/Services/Spout/Writer/Common/Internal/WorksheetInterface.php +0 -0
  70. app/Services/Spout/Writer/Common/Sheet.php +0 -0
  71. app/Services/Spout/Writer/Exception/Border/InvalidNameException.php +0 -0
  72. app/Services/Spout/Writer/Exception/Border/InvalidStyleException.php +0 -0
  73. app/Services/Spout/Writer/Exception/Border/InvalidWidthException.php +0 -0
  74. app/Services/Spout/Writer/Exception/InvalidColorException.php +0 -0
  75. app/Services/Spout/Writer/Exception/InvalidSheetNameException.php +0 -0
  76. app/Services/Spout/Writer/Exception/SheetNotFoundException.php +0 -0
  77. app/Services/Spout/Writer/Exception/WriterAlreadyOpenedException.php +0 -0
  78. app/Services/Spout/Writer/Exception/WriterException.php +0 -0
  79. app/Services/Spout/Writer/Exception/WriterNotOpenedException.php +0 -0
  80. app/Services/Spout/Writer/ODS/Helper/BorderHelper.php +0 -0
  81. app/Services/Spout/Writer/ODS/Helper/FileSystemHelper.php +0 -0
  82. app/Services/Spout/Writer/ODS/Helper/StyleHelper.php +0 -0
  83. app/Services/Spout/Writer/ODS/Internal/Workbook.php +0 -0
  84. app/Services/Spout/Writer/ODS/Internal/Worksheet.php +0 -0
  85. app/Services/Spout/Writer/ODS/Writer.php +0 -0
  86. app/Services/Spout/Writer/Style/Border.php +0 -0
  87. app/Services/Spout/Writer/Style/BorderBuilder.php +0 -0
  88. app/Services/Spout/Writer/Style/BorderPart.php +0 -0
  89. app/Services/Spout/Writer/Style/Color.php +0 -0
  90. app/Services/Spout/Writer/Style/Style.php +0 -0
  91. app/Services/Spout/Writer/Style/StyleBuilder.php +0 -0
  92. app/Services/Spout/Writer/WriterFactory.php +0 -0
  93. app/Services/Spout/Writer/WriterInterface.php +0 -0
  94. app/Services/Spout/Writer/XLSX/Helper/BorderHelper.php +0 -0
  95. app/Services/Spout/Writer/XLSX/Helper/FileSystemHelper.php +0 -0
  96. app/Services/Spout/Writer/XLSX/Helper/SharedStringsHelper.php +0 -0
  97. app/Services/Spout/Writer/XLSX/Helper/StyleHelper.php +0 -0
  98. app/Services/Spout/Writer/XLSX/Internal/Workbook.php +0 -0
  99. app/Services/Spout/Writer/XLSX/Internal/Worksheet.php +0 -0
  100. app/Services/Spout/Writer/XLSX/Writer.php +0 -0
  101. fluentform.php +2 -2
  102. public/img/forms/comment_rating.png +0 -0
  103. public/img/forms/contact_form.png +0 -0
  104. public/img/forms/new_blank.png +0 -0
  105. public/img/forms/polling_form.png +0 -0
  106. public/img/forms/support_form.png +0 -0
  107. public/img/integrations/activecampaign.png +0 -0
  108. public/img/integrations/campaignmonitor.png +0 -0
  109. public/img/integrations/constantcontact.png +0 -0
  110. public/img/integrations/convertkit.png +0 -0
  111. public/img/integrations/getresponse.png +0 -0
  112. public/img/integrations/hubspot.png +0 -0
  113. public/img/integrations/icontact.png +0 -0
  114. public/img/integrations/mailchimp.png +0 -0
  115. public/img/integrations/mailerlite.png +0 -0
  116. public/img/integrations/moosend_logo.png +0 -0
  117. public/img/integrations/sendfox.png +0 -0
  118. public/img/integrations/slack.png +0 -0
  119. public/img/integrations/twilio.png +0 -0
  120. public/img/integrations/webhook.png +0 -0
  121. public/img/integrations/zapier.png +0 -0
  122. public/libs/ace/ace.js +0 -0
  123. public/libs/ace/ace.min.js +0 -0
  124. public/libs/ace/mode-css.js +0 -0
  125. public/libs/ace/mode-javascript.js +0 -0
  126. public/libs/ace/mode-mysql.js +0 -0
  127. public/libs/ace/theme-monokai.js +0 -0
  128. public/libs/ace/worker-css.js +0 -0
  129. public/libs/clipboard.min.js +0 -0
  130. public/libs/jquery.mask.min.js +0 -0
  131. readme.txt +3 -5
  132. resources/languages/.gitkeep +0 -0
app/Services/FormBuilder/Components/DateTime.php CHANGED
@@ -127,9 +127,9 @@ class DateTime extends BaseComponent
127
  return;
128
  }
129
  flatpickr.localize(window.fluentFormVars.date_i18n);
130
- var config = JSON.parse(<?php echo wp_json_encode($config); ?>);
131
  try {
132
- var customConfig = JSON.parse(<?php echo wp_json_encode($customConfigObject); ?>);
133
  } catch (e) {
134
  var customConfig = {};
135
  }
127
  return;
128
  }
129
  flatpickr.localize(window.fluentFormVars.date_i18n);
130
+ var config = <?php echo fluentform_sanitize_html($config); ?> ;
131
  try {
132
+ var customConfig = <?php echo fluentform_sanitize_html($customConfigObject); ?>;
133
  } catch (e) {
134
  var customConfig = {};
135
  }
app/Services/Spout/Autoloader/Psr4Autoloader.php CHANGED
File without changes
app/Services/Spout/Autoloader/autoload.php CHANGED
File without changes
app/Services/Spout/Common/Escaper/CSV.php CHANGED
File without changes
app/Services/Spout/Common/Escaper/EscaperInterface.php CHANGED
File without changes
app/Services/Spout/Common/Escaper/ODS.php CHANGED
File without changes
app/Services/Spout/Common/Escaper/XLSX.php CHANGED
File without changes
app/Services/Spout/Common/Exception/EncodingConversionException.php CHANGED
File without changes
app/Services/Spout/Common/Exception/IOException.php CHANGED
File without changes
app/Services/Spout/Common/Exception/InvalidArgumentException.php CHANGED
File without changes
app/Services/Spout/Common/Exception/SpoutException.php CHANGED
File without changes
app/Services/Spout/Common/Exception/UnsupportedTypeException.php CHANGED
File without changes
app/Services/Spout/Common/Helper/EncodingHelper.php CHANGED
File without changes
app/Services/Spout/Common/Helper/FileSystemHelper.php CHANGED
File without changes
app/Services/Spout/Common/Helper/GlobalFunctionsHelper.php CHANGED
File without changes
app/Services/Spout/Common/Helper/StringHelper.php CHANGED
File without changes
app/Services/Spout/Common/Singleton.php CHANGED
File without changes
app/Services/Spout/Common/Type.php CHANGED
File without changes
app/Services/Spout/Reader/AbstractReader.php CHANGED
File without changes
app/Services/Spout/Reader/CSV/Reader.php CHANGED
File without changes
app/Services/Spout/Reader/CSV/ReaderOptions.php CHANGED
File without changes
app/Services/Spout/Reader/CSV/RowIterator.php CHANGED
File without changes
app/Services/Spout/Reader/CSV/Sheet.php CHANGED
File without changes
app/Services/Spout/Reader/CSV/SheetIterator.php CHANGED
File without changes
app/Services/Spout/Reader/Common/ReaderOptions.php CHANGED
File without changes
app/Services/Spout/Reader/Common/XMLProcessor.php CHANGED
File without changes
app/Services/Spout/Reader/Exception/IteratorNotRewindableException.php CHANGED
File without changes
app/Services/Spout/Reader/Exception/NoSheetsFoundException.php CHANGED
File without changes
app/Services/Spout/Reader/Exception/ReaderException.php CHANGED
File without changes
app/Services/Spout/Reader/Exception/ReaderNotOpenedException.php CHANGED
File without changes
app/Services/Spout/Reader/Exception/SharedStringNotFoundException.php CHANGED
File without changes
app/Services/Spout/Reader/Exception/XMLProcessingException.php CHANGED
File without changes
app/Services/Spout/Reader/IteratorInterface.php CHANGED
File without changes
app/Services/Spout/Reader/ODS/Helper/CellValueFormatter.php CHANGED
File without changes
app/Services/Spout/Reader/ODS/Helper/SettingsHelper.php CHANGED
File without changes
app/Services/Spout/Reader/ODS/Reader.php CHANGED
File without changes
app/Services/Spout/Reader/ODS/ReaderOptions.php CHANGED
File without changes
app/Services/Spout/Reader/ODS/RowIterator.php CHANGED
File without changes
app/Services/Spout/Reader/ODS/Sheet.php CHANGED
File without changes
app/Services/Spout/Reader/ODS/SheetIterator.php CHANGED
File without changes
app/Services/Spout/Reader/ReaderFactory.php CHANGED
File without changes
app/Services/Spout/Reader/ReaderInterface.php CHANGED
File without changes
app/Services/Spout/Reader/SheetInterface.php CHANGED
File without changes
app/Services/Spout/Reader/Wrapper/XMLInternalErrorsHelper.php CHANGED
File without changes
app/Services/Spout/Reader/Wrapper/XMLReader.php CHANGED
File without changes
app/Services/Spout/Reader/XLSX/Helper/CellHelper.php CHANGED
File without changes
app/Services/Spout/Reader/XLSX/Helper/CellValueFormatter.php CHANGED
File without changes
app/Services/Spout/Reader/XLSX/Helper/DateFormatHelper.php CHANGED
File without changes
app/Services/Spout/Reader/XLSX/Helper/SharedStringsCaching/CachingStrategyFactory.php CHANGED
File without changes
app/Services/Spout/Reader/XLSX/Helper/SharedStringsCaching/CachingStrategyInterface.php CHANGED
File without changes
app/Services/Spout/Reader/XLSX/Helper/SharedStringsCaching/FileBasedStrategy.php CHANGED
File without changes
app/Services/Spout/Reader/XLSX/Helper/SharedStringsCaching/InMemoryStrategy.php CHANGED
File without changes
app/Services/Spout/Reader/XLSX/Helper/SharedStringsHelper.php CHANGED
File without changes
app/Services/Spout/Reader/XLSX/Helper/SheetHelper.php CHANGED
File without changes
app/Services/Spout/Reader/XLSX/Helper/StyleHelper.php CHANGED
File without changes
app/Services/Spout/Reader/XLSX/Reader.php CHANGED
File without changes
app/Services/Spout/Reader/XLSX/ReaderOptions.php CHANGED
File without changes
app/Services/Spout/Reader/XLSX/RowIterator.php CHANGED
File without changes
app/Services/Spout/Reader/XLSX/Sheet.php CHANGED
File without changes
app/Services/Spout/Reader/XLSX/SheetIterator.php CHANGED
File without changes
app/Services/Spout/Writer/AbstractMultiSheetsWriter.php CHANGED
File without changes
app/Services/Spout/Writer/AbstractWriter.php CHANGED
File without changes
app/Services/Spout/Writer/CSV/Writer.php CHANGED
File without changes
app/Services/Spout/Writer/Common/Helper/AbstractStyleHelper.php CHANGED
File without changes
app/Services/Spout/Writer/Common/Helper/CellHelper.php CHANGED
File without changes
app/Services/Spout/Writer/Common/Helper/ZipHelper.php CHANGED
File without changes
app/Services/Spout/Writer/Common/Internal/AbstractWorkbook.php CHANGED
File without changes
app/Services/Spout/Writer/Common/Internal/WorkbookInterface.php CHANGED
File without changes
app/Services/Spout/Writer/Common/Internal/WorksheetInterface.php CHANGED
File without changes
app/Services/Spout/Writer/Common/Sheet.php CHANGED
File without changes
app/Services/Spout/Writer/Exception/Border/InvalidNameException.php CHANGED
File without changes
app/Services/Spout/Writer/Exception/Border/InvalidStyleException.php CHANGED
File without changes
app/Services/Spout/Writer/Exception/Border/InvalidWidthException.php CHANGED
File without changes
app/Services/Spout/Writer/Exception/InvalidColorException.php CHANGED
File without changes
app/Services/Spout/Writer/Exception/InvalidSheetNameException.php CHANGED
File without changes
app/Services/Spout/Writer/Exception/SheetNotFoundException.php CHANGED
File without changes
app/Services/Spout/Writer/Exception/WriterAlreadyOpenedException.php CHANGED
File without changes
app/Services/Spout/Writer/Exception/WriterException.php CHANGED
File without changes
app/Services/Spout/Writer/Exception/WriterNotOpenedException.php CHANGED
File without changes
app/Services/Spout/Writer/ODS/Helper/BorderHelper.php CHANGED
File without changes
app/Services/Spout/Writer/ODS/Helper/FileSystemHelper.php CHANGED
File without changes
app/Services/Spout/Writer/ODS/Helper/StyleHelper.php CHANGED
File without changes
app/Services/Spout/Writer/ODS/Internal/Workbook.php CHANGED
File without changes
app/Services/Spout/Writer/ODS/Internal/Worksheet.php CHANGED
File without changes
app/Services/Spout/Writer/ODS/Writer.php CHANGED
File without changes
app/Services/Spout/Writer/Style/Border.php CHANGED
File without changes
app/Services/Spout/Writer/Style/BorderBuilder.php CHANGED
File without changes
app/Services/Spout/Writer/Style/BorderPart.php CHANGED
File without changes
app/Services/Spout/Writer/Style/Color.php CHANGED
File without changes
app/Services/Spout/Writer/Style/Style.php CHANGED
File without changes
app/Services/Spout/Writer/Style/StyleBuilder.php CHANGED
File without changes
app/Services/Spout/Writer/WriterFactory.php CHANGED
File without changes
app/Services/Spout/Writer/WriterInterface.php CHANGED
File without changes
app/Services/Spout/Writer/XLSX/Helper/BorderHelper.php CHANGED
File without changes
app/Services/Spout/Writer/XLSX/Helper/FileSystemHelper.php CHANGED
File without changes
app/Services/Spout/Writer/XLSX/Helper/SharedStringsHelper.php CHANGED
File without changes
app/Services/Spout/Writer/XLSX/Helper/StyleHelper.php CHANGED
File without changes
app/Services/Spout/Writer/XLSX/Internal/Workbook.php CHANGED
File without changes
app/Services/Spout/Writer/XLSX/Internal/Worksheet.php CHANGED
File without changes
app/Services/Spout/Writer/XLSX/Writer.php CHANGED
File without changes
fluentform.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: Fluent Forms
4
  Description: Contact Form By Fluent Forms is the advanced Contact form plugin with drag and drop, multi column supported form builder plugin
5
- Version: 4.3.19
6
  Author: Contact Form - WPManageNinja LLC
7
  Author URI: https://fluentforms.com
8
  Plugin URI: https://wpmanageninja.com/wp-fluent-form/
@@ -15,7 +15,7 @@ defined('ABSPATH') or die;
15
 
16
  defined('FLUENTFORM') or define('FLUENTFORM', true);
17
  define('FLUENTFORM_DIR_PATH', plugin_dir_path(__FILE__));
18
- defined('FLUENTFORM_VERSION') or define('FLUENTFORM_VERSION', '4.3.19');
19
 
20
  if (!defined('FLUENTFORM_HAS_NIA')) {
21
  define('FLUENTFORM_HAS_NIA', true);
2
  /*
3
  Plugin Name: Fluent Forms
4
  Description: Contact Form By Fluent Forms is the advanced Contact form plugin with drag and drop, multi column supported form builder plugin
5
+ Version: 4.3.20
6
  Author: Contact Form - WPManageNinja LLC
7
  Author URI: https://fluentforms.com
8
  Plugin URI: https://wpmanageninja.com/wp-fluent-form/
15
 
16
  defined('FLUENTFORM') or define('FLUENTFORM', true);
17
  define('FLUENTFORM_DIR_PATH', plugin_dir_path(__FILE__));
18
+ defined('FLUENTFORM_VERSION') or define('FLUENTFORM_VERSION', '4.3.20');
19
 
20
  if (!defined('FLUENTFORM_HAS_NIA')) {
21
  define('FLUENTFORM_HAS_NIA', true);
public/img/forms/comment_rating.png CHANGED
File without changes
public/img/forms/contact_form.png CHANGED
File without changes
public/img/forms/new_blank.png CHANGED
File without changes
public/img/forms/polling_form.png CHANGED
File without changes
public/img/forms/support_form.png CHANGED
File without changes
public/img/integrations/activecampaign.png CHANGED
File without changes
public/img/integrations/campaignmonitor.png CHANGED
File without changes
public/img/integrations/constantcontact.png CHANGED
File without changes
public/img/integrations/convertkit.png CHANGED
File without changes
public/img/integrations/getresponse.png CHANGED
File without changes
public/img/integrations/hubspot.png CHANGED
File without changes
public/img/integrations/icontact.png CHANGED
File without changes
public/img/integrations/mailchimp.png CHANGED
File without changes
public/img/integrations/mailerlite.png CHANGED
File without changes
public/img/integrations/moosend_logo.png CHANGED
File without changes
public/img/integrations/sendfox.png CHANGED
File without changes
public/img/integrations/slack.png CHANGED
File without changes
public/img/integrations/twilio.png CHANGED
File without changes
public/img/integrations/webhook.png CHANGED
File without changes
public/img/integrations/zapier.png CHANGED
File without changes
public/libs/ace/ace.js CHANGED
File without changes
public/libs/ace/ace.min.js CHANGED
File without changes
public/libs/ace/mode-css.js CHANGED
File without changes
public/libs/ace/mode-javascript.js CHANGED
File without changes
public/libs/ace/mode-mysql.js CHANGED
File without changes
public/libs/ace/theme-monokai.js CHANGED
File without changes
public/libs/ace/worker-css.js CHANGED
File without changes
public/libs/clipboard.min.js CHANGED
File without changes
public/libs/jquery.mask.min.js CHANGED
File without changes
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: contact form, contact forms, wp forms, forms, form builder, contact form b
4
  Requires at least: 4.5
5
  Tested up to: 6.0.1
6
  Requires PHP: 5.6
7
- Stable tag: 4.3.19
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -374,10 +374,8 @@ The entire source code is <a href="https://github.com/fluentform/fluentform">ava
374
 
375
  == Changelog ==
376
 
377
- = 4.3.19 (Date: October 21, 2022) =
378
- - Fixes Conversational Form responsiveness
379
- - Improves global settings UX
380
- - Improves code sanitization
381
 
382
  = 4.3.18 (Date: October 19, 2022) =
383
  - Improves Turnstile
4
  Requires at least: 4.5
5
  Tested up to: 6.0.1
6
  Requires PHP: 5.6
7
+ Stable tag: 4.3.20
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
374
 
375
  == Changelog ==
376
 
377
+ = 4.3.20 (Date: October 22, 2022) =
378
+ - Fixes Date / Time field config bug
 
 
379
 
380
  = 4.3.18 (Date: October 19, 2022) =
381
  - Improves Turnstile
resources/languages/.gitkeep ADDED
File without changes