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

Version Description

(13 February 2019) =

Bugs:

  • Resolved an issue that was sometimes causing the submission sequence to reset.

=

Download this release

Release Info

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

Code changes from version 3.4.3 to 3.4.4

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.3' );
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.4' );
269
 
270
  // Plugin Folder Path
271
  if ( ! defined( 'NF_PLUGIN_DIR' ) )
includes/Updates/CacheCollateForms.php CHANGED
@@ -193,6 +193,7 @@ class NF_Updates_CacheCollateForms extends NF_Abstracts_RequiredUpdate
193
  * Also checks meta values against our $this->blacklist.
194
  *
195
  * @since 3.4.0
 
196
  * @return [type] [description]
197
  */
198
  private function update_form()
@@ -202,7 +203,7 @@ class NF_Updates_CacheCollateForms extends NF_Abstracts_RequiredUpdate
202
 
203
  // Get our seq_number from meta.
204
  $sql = "SELECT `value` FROM `{$this->meta_table}` WHERE `key` = '_seq_num' AND `parent_id` = " . intval( $this->form[ 'ID' ] );
205
- $result = $this->db->query( $sql, 'ARRAY_A' );
206
  // Default to 1.
207
  $seq_num = 1;
208
  if ( ! empty( $result[ 0 ][ 'value' ] ) ) {
193
  * Also checks meta values against our $this->blacklist.
194
  *
195
  * @since 3.4.0
196
+ * @updated 3.4.4
197
  * @return [type] [description]
198
  */
199
  private function update_form()
203
 
204
  // Get our seq_number from meta.
205
  $sql = "SELECT `value` FROM `{$this->meta_table}` WHERE `key` = '_seq_num' AND `parent_id` = " . intval( $this->form[ 'ID' ] );
206
+ $result = $this->db->get_results( $sql, 'ARRAY_A' );
207
  // Default to 1.
208
  $seq_num = 1;
209
  if ( ! empty( $result[ 0 ][ 'value' ] ) ) {
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.3
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.3';
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.4
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.4';
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.3
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,16 +111,20 @@ For help and video tutorials, please visit our website: [Ninja Forms Documentati
111
 
112
  == Upgrade Notice ==
113
 
114
- = 3.4.3 (5 February 2019) =
115
 
116
  *Bugs:*
117
 
118
- * Resolved an issue that was causing some form imports to fail.
119
- * Submission exports of checkbox fields that have been modified by an admin should now display their proper value in the csv.
120
- * Resolved an issue that was rarely causing actions to fire twice.
121
 
122
  == Changelog ==
123
 
 
 
 
 
 
 
124
  = 3.4.3 (5 February 2019) =
125
 
126
  *Bugs:*
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.4
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.4 (13 February 2019) =
115
 
116
  *Bugs:*
117
 
118
+ * Resolved an issue that was sometimes causing the submission sequence to reset.
 
 
119
 
120
  == Changelog ==
121
 
122
+ = 3.4.4 (13 February 2019) =
123
+
124
+ *Bugs:*
125
+
126
+ * Resolved an issue that was sometimes causing the submission sequence to reset.
127
+
128
  = 3.4.3 (5 February 2019) =
129
 
130
  *Bugs:*