Form Maker by WD – user-friendly drag & drop Form Builder plugin - Version 1.8.36

Version Description

Fixed: Bug on long content in textarea fields

Download this release

Release Info

Developer webdorado
Plugin Icon 128x128 Form Maker by WD – user-friendly drag & drop Form Builder plugin
Version 1.8.36
Comparing to
See all releases

Code changes from version 1.8.35 to 1.8.36

form-maker.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Form Maker
4
  * Plugin URI: https://web-dorado.com/products/form-maker-wordpress.html
5
  * Description: This plugin is a modern and advanced tool for easy and fast creating of a WordPress Form. The backend interface is intuitive and user friendly which allows users far from scripting and programming to create WordPress Forms.
6
- * Version: 1.8.35
7
  * Author: WebDorado
8
  * Author URI: https://web-dorado.com/
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
@@ -271,7 +271,7 @@ function register_fmemailverification_cpt(){
271
  // Activate plugin.
272
  function form_maker_activate() {
273
  $version = get_option("wd_form_maker_version");
274
- $new_version = '1.8.35';
275
  global $wpdb;
276
  if (!$version) {
277
  add_option("wd_form_maker_version", $new_version, '', 'no');
3
  * Plugin Name: Form Maker
4
  * Plugin URI: https://web-dorado.com/products/form-maker-wordpress.html
5
  * Description: This plugin is a modern and advanced tool for easy and fast creating of a WordPress Form. The backend interface is intuitive and user friendly which allows users far from scripting and programming to create WordPress Forms.
6
+ * Version: 1.8.36
7
  * Author: WebDorado
8
  * Author URI: https://web-dorado.com/
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
271
  // Activate plugin.
272
  function form_maker_activate() {
273
  $version = get_option("wd_form_maker_version");
274
+ $new_version = '1.8.36';
275
  global $wpdb;
276
  if (!$version) {
277
  add_option("wd_form_maker_version", $new_version, '', 'no');
form_maker_insert.php CHANGED
@@ -73,7 +73,7 @@ function from_maker_insert() {
73
  `id` int(11) NOT NULL AUTO_INCREMENT,
74
  `form_id` int(11) NOT NULL,
75
  `element_label` varchar(128) NOT NULL,
76
- `element_value` varchar(600) NOT NULL,
77
  `group_id` int(11) NOT NULL,
78
  `date` datetime NOT NULL,
79
  `ip` varchar(128) NOT NULL,
73
  `id` int(11) NOT NULL AUTO_INCREMENT,
74
  `form_id` int(11) NOT NULL,
75
  `element_label` varchar(128) NOT NULL,
76
+ `element_value` longtext NOT NULL,
77
  `group_id` int(11) NOT NULL,
78
  `date` datetime NOT NULL,
79
  `ip` varchar(128) NOT NULL,
form_maker_update.php CHANGED
@@ -183,6 +183,9 @@ function form_maker_update($version) {
183
  if (version_compare($version, '1.8.26') == -1) {
184
  $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker_submits` CHANGE `ip` `ip` varchar(128) NOT NULL");
185
  }
 
 
 
186
  return;
187
  }
188
 
183
  if (version_compare($version, '1.8.26') == -1) {
184
  $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker_submits` CHANGE `ip` `ip` varchar(128) NOT NULL");
185
  }
186
+ if (version_compare($version, '1.8.36') == -1) {
187
+ $wpdb->query("ALTER TABLE `" . $wpdb->prefix . "formmaker_submits` CHANGE `element_value` `element_value` longtext NOT NULL");
188
+ }
189
  return;
190
  }
191
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://web-dorado.com/products/wordpress-form.html
4
  Tags: form, forms, form builder, form maker, form manager, form plugin, form with recaptcha, forms plugin, multiple forms, paypal form, survey form, feedback form, feedback forms, contact form, contact form plugin, contact form builder, form creator, email form, secure form, web form, form to email, contact forms, custom forms, form widget, captcha form, wordpress contact form ,recaptcha contact form, form creation, contact form with auto reply, widget contact form, builder, feedback, contacts form plugin , custom contact form, contact us form, admin, captcha, contact, database, email, javascript, jquery, page, plugin, survey, widget, custom form, forms creator, input, validation, send copy, form with captcha, pdf, mysql, paypal, ReCaptcha
5
  Requires at least: 3.4
6
  Tested up to: 4.5
7
- Stable tag: 1.8.35
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -366,8 +366,11 @@ Email field should be used since it verifies that an entry format fulfills examp
366
 
367
  == Changelog ==
368
 
 
 
 
369
  = 1.8.35 =
370
- Fixed: Browser warning on google maps API version
371
  Fixed: Phone field style issue on Mac OS
372
 
373
  = 1.8.34 =
4
  Tags: form, forms, form builder, form maker, form manager, form plugin, form with recaptcha, forms plugin, multiple forms, paypal form, survey form, feedback form, feedback forms, contact form, contact form plugin, contact form builder, form creator, email form, secure form, web form, form to email, contact forms, custom forms, form widget, captcha form, wordpress contact form ,recaptcha contact form, form creation, contact form with auto reply, widget contact form, builder, feedback, contacts form plugin , custom contact form, contact us form, admin, captcha, contact, database, email, javascript, jquery, page, plugin, survey, widget, custom form, forms creator, input, validation, send copy, form with captcha, pdf, mysql, paypal, ReCaptcha
5
  Requires at least: 3.4
6
  Tested up to: 4.5
7
+ Stable tag: 1.8.36
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
366
 
367
  == Changelog ==
368
 
369
+ = 1.8.36 =
370
+ Fixed: Bug on long content in textarea fields
371
+
372
  = 1.8.35 =
373
+ Fixed: Browser warning on Google Maps API version
374
  Fixed: Phone field style issue on Mac OS
375
 
376
  = 1.8.34 =