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

Version Description

(19 June 2019) =

Bugs:

  • Resolved an issue that sometimes caused required updates to fail due to allowed server memory.
  • Public form link should now be more reliable without needing to update site permalinks.
  • Corrected a typo in the shortcode output of the Display Your Form settings.
  • Dailed back our add-on updater script. It was checking for updates too often.
  • Resolved an issue that was sometimes causing form submission to hang on processing, even though it had finished submitting data.
  • Corrected a typo in the help text for auto-adding a submit button.
  • Dynamic options in lists should now work properly everywhere, not just on form display.
  • Fixed a couple of broken links on our Get Help page.
  • The public link setting should no longer appear on the dashboard for forms where it is not enabled.
  • Resolved an issue that sometimes caused the form dashboard to not display.
  • Temporarily disabled required updates in order to investigate a reported issue with them freezing.

Changes:

  • Updated our Details page in the WordPress repo.
  • Date fields can no longer be added to calculations.

=

Download this release

Release Info

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

Code changes from version 3.4.15 to 3.4.16

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.15' );
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.16' );
269
 
270
  // Plugin Folder Path
271
  if ( ! defined( 'NF_PLUGIN_DIR' ) )
includes/Helper.php CHANGED
@@ -498,6 +498,7 @@ final class WPN_Helper
498
  * @return boolean
499
  */
500
  public static function use_cache() {
 
501
 
502
  $cache_mode = intval( get_option('ninja_forms_cache_mode') );
503
  // if we've already decided to use the cache return true and exit.
498
  * @return boolean
499
  */
500
  public static function use_cache() {
501
+ return true;
502
 
503
  $cache_mode = intval( get_option('ninja_forms_cache_mode') );
504
  // if we've already decided to use the cache return true and exit.
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.15
7
  Author: The WP Ninjas
8
  Author URI: http://ninjaforms.com
9
  Text Domain: ninja-forms
@@ -59,7 +59,7 @@ if( get_option( 'ninja_forms_load_deprecated', FALSE ) && ! ( isset( $_POST[ 'nf
59
  * @since 3.0
60
  */
61
 
62
- const VERSION = '3.4.15';
63
 
64
  /**
65
  * @since 3.4.0
@@ -525,7 +525,7 @@ if( get_option( 'ninja_forms_load_deprecated', FALSE ) && ! ( isset( $_POST[ 'nf
525
  global $wpdb;
526
  $sql = "SELECT COUNT( `id` ) AS total FROM `{$wpdb->prefix}nf3_forms`;";
527
  $result = $wpdb->get_results( $sql, 'ARRAY_A' );
528
- $threshold = 50; // Threshold percentage for our required updates.
529
  if ( get_transient( 'ninja_forms_prevent_updates' ) ) {
530
  update_option( 'ninja_forms_needs_updates', 0 );
531
  }
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.16
7
  Author: The WP Ninjas
8
  Author URI: http://ninjaforms.com
9
  Text Domain: ninja-forms
59
  * @since 3.0
60
  */
61
 
62
+ const VERSION = '3.4.16';
63
 
64
  /**
65
  * @since 3.4.0
525
  global $wpdb;
526
  $sql = "SELECT COUNT( `id` ) AS total FROM `{$wpdb->prefix}nf3_forms`;";
527
  $result = $wpdb->get_results( $sql, 'ARRAY_A' );
528
+ $threshold = 0; // Threshold percentage for our required updates.
529
  if ( get_transient( 'ninja_forms_prevent_updates' ) ) {
530
  update_option( 'ninja_forms_needs_updates', 0 );
531
  }
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: 5.0
5
  Tested up to: 5.2
6
- Stable tag: 3.4.15
7
  License: GPLv2 or later
8
 
9
  Ninja Forms is an easy to use drag and drop form builder with an intuitive UI that can be used to create contact forms, email subscription forms, lead generation forms, WordPress registration and login forms, order forms, payment and donation forms, and much more!
@@ -137,7 +137,7 @@ This section describes how to install the plugin and get it working.
137
 
138
  == Upgrade Notice ==
139
 
140
- = 3.4.15 (18 June 2019) =
141
 
142
  *Bugs:*
143
 
@@ -151,6 +151,7 @@ This section describes how to install the plugin and get it working.
151
  * Fixed a couple of broken links on our Get Help page.
152
  * The public link setting should no longer appear on the dashboard for forms where it is not enabled.
153
  * Resolved an issue that sometimes caused the form dashboard to not display.
 
154
 
155
  *Changes:*
156
 
@@ -159,6 +160,12 @@ This section describes how to install the plugin and get it working.
159
 
160
  == Changelog ==
161
 
 
 
 
 
 
 
162
  = 3.4.15 (18 June 2019) =
163
 
164
  *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: 5.0
5
  Tested up to: 5.2
6
+ Stable tag: 3.4.16
7
  License: GPLv2 or later
8
 
9
  Ninja Forms is an easy to use drag and drop form builder with an intuitive UI that can be used to create contact forms, email subscription forms, lead generation forms, WordPress registration and login forms, order forms, payment and donation forms, and much more!
137
 
138
  == Upgrade Notice ==
139
 
140
+ = 3.4.16 (19 June 2019) =
141
 
142
  *Bugs:*
143
 
151
  * Fixed a couple of broken links on our Get Help page.
152
  * The public link setting should no longer appear on the dashboard for forms where it is not enabled.
153
  * Resolved an issue that sometimes caused the form dashboard to not display.
154
+ * Temporarily disabled required updates in order to investigate a reported issue with them freezing.
155
 
156
  *Changes:*
157
 
160
 
161
  == Changelog ==
162
 
163
+ = 3.4.16 (19 June 2019) =
164
+
165
+ *Bugs:*
166
+
167
+ * Temporarily disabled required updates in order to investigate a reported issue with them freezing.
168
+
169
  = 3.4.15 (18 June 2019) =
170
 
171
  *Bugs:*