Version Description
(Date: April 03, 2020) = * Conditional Logic improvement * T&C and GDPR UI improvement * Submission JS improvement
Download this release
Release Info
Developer | techjewel |
Plugin | Contact Form Plugin – Fastest Contact Form Builder Plugin for WordPress by Fluent Forms |
Version | 3.5.3 |
Comparing to | |
See all releases |
Code changes from version 3.5.2 to 3.5.3
- app/Services/Parser/Validations.php +5 -12
- fluentform.php +2 -2
- glue.json +1 -1
- readme.txt +2 -2
app/Services/Parser/Validations.php
CHANGED
@@ -131,18 +131,11 @@ class Validations
|
|
131 |
// logics that dictates it's presence in the rules.
|
132 |
|
133 |
// NOTE: Previous code by Arif
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
// Note: New code by Sheikh Heera
|
141 |
-
$hasInput = Arr::has($this->inputs, $this->accessor);
|
142 |
-
|
143 |
-
$isRequired = Arr::get($field, 'raw.settings.validation_rules.required.value');
|
144 |
-
|
145 |
-
return ($hasInput || $isRequired) && ConditionAssesor::evaluate($field, $this->inputs);
|
146 |
}
|
147 |
|
148 |
/**
|
131 |
// logics that dictates it's presence in the rules.
|
132 |
|
133 |
// NOTE: Previous code by Arif
|
134 |
+
return Arr::has(
|
135 |
+
$this->inputs, $this->accessor
|
136 |
+
) && ConditionAssesor::evaluate(
|
137 |
+
$field, $this->inputs
|
138 |
+
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
}
|
140 |
|
141 |
/**
|
fluentform.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Fluent Forms - Best Form Plugin for WordPress
|
4 |
Description: Contact Form By Fluent Forms is the advanced Contact form plugin with drag and drop, multi column supported form builder plugin
|
5 |
-
Version: 3.5.
|
6 |
Author: WP Fluent Forms
|
7 |
Author URI: https://wpmanageninja.com
|
8 |
Plugin URI: https://wpmanageninja.com/wp-fluent-form/
|
@@ -16,7 +16,7 @@ defined('ABSPATH') or die;
|
|
16 |
defined('FLUENTFORM') or define('FLUENTFORM', true);
|
17 |
define('FLUENTFORM_DIR_PATH', plugin_dir_path(__FILE__));
|
18 |
|
19 |
-
defined('FLUENTFORM_VERSION') or define('FLUENTFORM_VERSION', '3.5.
|
20 |
|
21 |
if (!defined('FLUENTFORM_HAS_NIA')) {
|
22 |
define('FLUENTFORM_HAS_NIA', true);
|
2 |
/*
|
3 |
Plugin Name: Fluent Forms - Best Form Plugin for WordPress
|
4 |
Description: Contact Form By Fluent Forms is the advanced Contact form plugin with drag and drop, multi column supported form builder plugin
|
5 |
+
Version: 3.5.3
|
6 |
Author: WP Fluent Forms
|
7 |
Author URI: https://wpmanageninja.com
|
8 |
Plugin URI: https://wpmanageninja.com/wp-fluent-form/
|
16 |
defined('FLUENTFORM') or define('FLUENTFORM', true);
|
17 |
define('FLUENTFORM_DIR_PATH', plugin_dir_path(__FILE__));
|
18 |
|
19 |
+
defined('FLUENTFORM_VERSION') or define('FLUENTFORM_VERSION', '3.5.3');
|
20 |
|
21 |
if (!defined('FLUENTFORM_HAS_NIA')) {
|
22 |
define('FLUENTFORM_HAS_NIA', true);
|
glue.json
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
"plugin_name": "FluentForm",
|
3 |
"plugin_slug": "fluentform",
|
4 |
"plugin_text_domain": "fluentform",
|
5 |
-
"plugin_version": "3.5.
|
6 |
"plugin_description": "The most advanced drag and drop form builder plugin for WordPress",
|
7 |
"plugin_uri": "https://wpfluentforms.com",
|
8 |
"plugin_license": "GPLv2 or later",
|
2 |
"plugin_name": "FluentForm",
|
3 |
"plugin_slug": "fluentform",
|
4 |
"plugin_text_domain": "fluentform",
|
5 |
+
"plugin_version": "3.5.3",
|
6 |
"plugin_description": "The most advanced drag and drop form builder plugin for WordPress",
|
7 |
"plugin_uri": "https://wpfluentforms.com",
|
8 |
"plugin_license": "GPLv2 or later",
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: contact form, contact forms, wp forms, forms, form builder
|
|
4 |
Requires at least: 4.5
|
5 |
Tested up to: 5.4
|
6 |
Requires PHP: 5.6
|
7 |
-
Stable tag: 3.5.
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -291,7 +291,7 @@ Yes, Please check our <a href="https://trello.com/b/FaDlAD9B/public-roadmap-wp-f
|
|
291 |
|
292 |
== Changelog ==
|
293 |
|
294 |
-
= 3.5.
|
295 |
* Conditional Logic improvement
|
296 |
* T&C and GDPR UI improvement
|
297 |
* Submission JS improvement
|
4 |
Requires at least: 4.5
|
5 |
Tested up to: 5.4
|
6 |
Requires PHP: 5.6
|
7 |
+
Stable tag: 3.5.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
291 |
|
292 |
== Changelog ==
|
293 |
|
294 |
+
= 3.5.3 (Date: April 03, 2020) =
|
295 |
* Conditional Logic improvement
|
296 |
* T&C and GDPR UI improvement
|
297 |
* Submission JS improvement
|