Ninja Forms – The Easy and Powerful Forms Builder - Version 3.4.2

Version Description

(17 January 2019) =

Bugs:

  • Resolved an issue that sometimes caused fields to not appear on the form after publish.
  • Corrected an error that was causing form duplication to fail.
  • Sites with WP_DEBUG enabled should no longer display an undefined 'maintenance' column error on form load.

=

Download this release

Release Info

Developer krmoorhouse
Plugin Icon 128x128 Ninja Forms – The Easy and Powerful Forms Builder
Version 3.4.2
Comparing to
See all releases

Code changes from version 3.4.1 to 3.4.2

deprecated/ninja-forms.php CHANGED
@@ -265,7 +265,7 @@ class Ninja_Forms {
265
 
266
  // Plugin version
267
  if ( ! defined( 'NF_PLUGIN_VERSION' ) )
268
- define( 'NF_PLUGIN_VERSION', '3.4.1' );
269
 
270
  // Plugin Folder Path
271
  if ( ! defined( 'NF_PLUGIN_DIR' ) )
265
 
266
  // Plugin version
267
  if ( ! defined( 'NF_PLUGIN_VERSION' ) )
268
+ define( 'NF_PLUGIN_VERSION', '3.4.2' );
269
 
270
  // Plugin Folder Path
271
  if ( ! defined( 'NF_PLUGIN_DIR' ) )
includes/Database/FieldsController.php CHANGED
@@ -157,7 +157,7 @@ final class NF_Database_FieldsController
157
  * Check our DB for a field with this id.
158
  */
159
  if ( is_numeric( $field_id ) ) {
160
- $field_in_db = $this->db->get_row( "SELECT `id` FROM `wp_nf3_fields` WHERE `id` = {$field_id}" );
161
  } else {
162
  $field_in_db = array();
163
  }
157
  * Check our DB for a field with this id.
158
  */
159
  if ( is_numeric( $field_id ) ) {
160
+ $field_in_db = $this->db->get_row( "SELECT `id` FROM `{$this->db->prefix}nf3_fields` WHERE `id` = {$field_id}" );
161
  } else {
162
  $field_in_db = array();
163
  }
ninja-forms.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Ninja Forms
4
  Plugin URI: http://ninjaforms.com/
5
  Description: Ninja Forms is a webform builder with unparalleled ease of use and features.
6
- Version: 3.4.1
7
  Author: The WP Ninjas
8
  Author URI: http://ninjaforms.com
9
  Text Domain: ninja-forms
@@ -58,7 +58,7 @@ if( get_option( 'ninja_forms_load_deprecated', FALSE ) && ! ( isset( $_POST[ 'nf
58
  * @since 3.0
59
  */
60
 
61
- const VERSION = '3.4.1';
62
 
63
  /**
64
  * @since 3.4.0
3
  Plugin Name: Ninja Forms
4
  Plugin URI: http://ninjaforms.com/
5
  Description: Ninja Forms is a webform builder with unparalleled ease of use and features.
6
+ Version: 3.4.2
7
  Author: The WP Ninjas
8
  Author URI: http://ninjaforms.com
9
  Text Domain: ninja-forms
58
  * @since 3.0
59
  */
60
 
61
+ const VERSION = '3.4.2';
62
 
63
  /**
64
  * @since 3.4.0
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: wpninjasllc, kstover, jameslaws, kbjohnson90, klhall1987, krmoorho
3
  Tags: form, forms, contact form, custom form, form builder, form creator, form manager, form creation, contact forms, custom forms, forms builder, forms creator, forms manager, forms creation, form administration,
4
  Requires at least: 4.8
5
  Tested up to: 5.0
6
- Stable tag: 3.4.1
7
  License: GPLv2 or later
8
 
9
  Drag and drop fields in an intuitive UI to create contact forms, email subscription forms, order forms, payment forms, send emails and more!
@@ -111,19 +111,21 @@ For help and video tutorials, please visit our website: [Ninja Forms Documentati
111
 
112
  == Upgrade Notice ==
113
 
114
- = 3.4.1 (15 January 2019) =
115
 
116
  *Bugs:*
117
 
 
118
  * Corrected an error that was causing form duplication to fail.
119
  * Sites with WP_DEBUG enabled should no longer display an undefined 'maintenance' column error on form load.
120
 
121
- *Changes:*
122
 
123
- * Implemented a new import process, which should be more reliable with large form imports.
124
- * Upgraded our data structure to reduce loading times for forms and the form builder.
125
 
126
- == Changelog ==
 
 
127
 
128
  = 3.4.1 (15 January 2019) =
129
 
3
  Tags: form, forms, contact form, custom form, form builder, form creator, form manager, form creation, contact forms, custom forms, forms builder, forms creator, forms manager, forms creation, form administration,
4
  Requires at least: 4.8
5
  Tested up to: 5.0
6
+ Stable tag: 3.4.2
7
  License: GPLv2 or later
8
 
9
  Drag and drop fields in an intuitive UI to create contact forms, email subscription forms, order forms, payment forms, send emails and more!
111
 
112
  == Upgrade Notice ==
113
 
114
+ = 3.4.2 (17 January 2019) =
115
 
116
  *Bugs:*
117
 
118
+ * Resolved an issue that sometimes caused fields to not appear on the form after publish.
119
  * Corrected an error that was causing form duplication to fail.
120
  * Sites with WP_DEBUG enabled should no longer display an undefined 'maintenance' column error on form load.
121
 
122
+ == Changelog ==
123
 
124
+ = 3.4.2 (17 January 2019) =
 
125
 
126
+ *Bugs:*
127
+
128
+ * Resolved an issue that sometimes caused fields to not appear on the form after publish.
129
 
130
  = 3.4.1 (15 January 2019) =
131