Contact Form by WPForms – Drag & Drop Form Builder for WordPress - Version 1.2.2.2

Version Description

  • Fixed: Javascript asset not loading due to incorrect path
Download this release

Release Info

Developer jaredatch
Plugin Icon 128x128 Contact Form by WPForms – Drag & Drop Form Builder for WordPress
Version 1.2.2.2
Comparing to
See all releases

Code changes from version 1.2.2.1 to 1.2.2.2

lite/wpforms-lite.php CHANGED
@@ -252,7 +252,7 @@ class WPForms_Lite {
252
 
253
  wp_enqueue_script(
254
  'wpforms-builder-lite',
255
- WPFORMS_PLUGIN_URL . 'lite/admin-builder-lite.js',
256
  array( 'jquery', 'jquery-confirm' ),
257
  WPFORMS_VERSION,
258
  false
252
 
253
  wp_enqueue_script(
254
  'wpforms-builder-lite',
255
+ WPFORMS_PLUGIN_URL . 'lite/assets/js/admin-builder-lite.js',
256
  array( 'jquery', 'jquery-confirm' ),
257
  WPFORMS_VERSION,
258
  false
lite/readme.txt → readme.txt RENAMED
@@ -160,6 +160,12 @@ Syed Balkhi
160
 
161
  == Changelog ==
162
 
 
 
 
 
 
 
163
  = 1.2.2 =
164
  - Changed: Choice Layouts now use flexbox instead of CSS columns for better rendering
165
  - Fixed: Class name typo in a CSS column class introduced with 1.2.1
160
 
161
  == Changelog ==
162
 
163
+ = 1.2.2.2 =
164
+ - Fixed: Javascript asset not loading due to incorrect path
165
+
166
+ = 1.2.2.1 =
167
+ - Fixed: Form select inside modal window overflowing when a form exists with a long title
168
+
169
  = 1.2.2 =
170
  - Changed: Choice Layouts now use flexbox instead of CSS columns for better rendering
171
  - Fixed: Class name typo in a CSS column class introduced with 1.2.1
wpforms.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: Beginner friendly WordPress contact form plugin. Use our Drag & Drop form builder to create your WordPress forms.
6
  * Author: WPForms
7
  * Author URI: https://wpforms.com
8
- * Version: 1.2.2.1
9
  * Text Domain: wpforms
10
  * Domain Path: languages
11
  *
@@ -81,7 +81,7 @@ final class WPForms {
81
  * @since 1.0.0
82
  * @var sting
83
  */
84
- public $version = '1.2.2.1';
85
 
86
  /**
87
  * The form data handler instance.
5
  * Description: Beginner friendly WordPress contact form plugin. Use our Drag & Drop form builder to create your WordPress forms.
6
  * Author: WPForms
7
  * Author URI: https://wpforms.com
8
+ * Version: 1.2.2.2
9
  * Text Domain: wpforms
10
  * Domain Path: languages
11
  *
81
  * @since 1.0.0
82
  * @var sting
83
  */
84
+ public $version = '1.2.2.2';
85
 
86
  /**
87
  * The form data handler instance.