Contact Form Plugin – Fastest Contact Form Builder Plugin for WordPress by Fluent Forms - Version 1.3.1

Version Description

Download this release

Release Info

Developer techjewel
Plugin Icon 128x128 Contact Form Plugin – Fastest Contact Form Builder Plugin for WordPress by Fluent Forms
Version 1.3.1
Comparing to
See all releases

Code changes from version 1.3.0 to 1.3.1

app/Modules/Activator.php CHANGED
@@ -39,6 +39,6 @@ class Activator
39
 
40
  private function setCurrentVersion()
41
  {
42
- update_option('_fluentform_installed_version', '1.3.0');
43
  }
44
  }
39
 
40
  private function setCurrentVersion()
41
  {
42
+ update_option('_fluentform_installed_version', '1.3.1');
43
  }
44
  }
app/Modules/Form/Inputs.php CHANGED
@@ -33,9 +33,8 @@ class Inputs
33
  $deep = true;
34
 
35
  $form = wpFluent()->table('fluentform_forms')->find($formId);
36
-
37
  $fields = FormFieldsParser::getShortCodeInputs($form, ['admin_label', 'attributes', 'options']);
38
-
39
  wp_send_json($fields, 200);
40
  }
41
  }
33
  $deep = true;
34
 
35
  $form = wpFluent()->table('fluentform_forms')->find($formId);
36
+
37
  $fields = FormFieldsParser::getShortCodeInputs($form, ['admin_label', 'attributes', 'options']);
 
38
  wp_send_json($fields, 200);
39
  }
40
  }
app/Services/Parser/Extractor.php CHANGED
@@ -89,7 +89,7 @@ class Extractor
89
  // then we will recursively call this function to resolve.
90
  if ($field['element'] === 'container') {
91
  foreach ($field['columns'] as $item) {
92
- $this->looper()($item['fields']);
93
  }
94
  }
95
 
89
  // then we will recursively call this function to resolve.
90
  if ($field['element'] === 'container') {
91
  foreach ($field['columns'] as $item) {
92
+ $this->looper($item['fields']);
93
  }
94
  }
95
 
fluentform.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: FluentForm
4
  Description: The most advanced drag and drop form builder plugin for WordPress.
5
- Version: 1.3.0
6
  Author: WPFluentForm
7
  Author URI: https://wpfluentform.com
8
  Plugin URI: https://wpfluentform.com/
@@ -19,13 +19,4 @@ include "framework/Foundation/Bootstrap.php";
19
 
20
  use FluentForm\Framework\Foundation\Bootstrap;
21
 
22
- Bootstrap::run(__FILE__);
23
-
24
- add_action('admin_init', function () {
25
- $url = 'https://adre20765.api-us1.com';
26
- $key = '0c07455f78a76b3b9027df0c292c1fcacf225504d75dd147ca807972a1be7e823466df85';
27
-
28
- // $api = new ActiveCampaign($url, $key);
29
-
30
- // dd($api->credentials_test());
31
- });
2
  /*
3
  Plugin Name: FluentForm
4
  Description: The most advanced drag and drop form builder plugin for WordPress.
5
+ Version: 1.3.1
6
  Author: WPFluentForm
7
  Author URI: https://wpfluentform.com
8
  Plugin URI: https://wpfluentform.com/
19
 
20
  use FluentForm\Framework\Foundation\Bootstrap;
21
 
22
+ Bootstrap::run(__FILE__);
 
 
 
 
 
 
 
 
 
glue.json CHANGED
@@ -2,7 +2,7 @@
2
  "plugin_name": "FluentForm",
3
  "plugin_slug": "fluentform",
4
  "plugin_text_domain": "fluentform",
5
- "plugin_version": "1.3.0",
6
  "plugin_description": "The most advanced drag and drop form builder plugin for WordPress",
7
  "plugin_uri": "https://wpfluentform.com",
8
  "plugin_license": "GPLv2 or later",
2
  "plugin_name": "FluentForm",
3
  "plugin_slug": "fluentform",
4
  "plugin_text_domain": "fluentform",
5
+ "plugin_version": "1.3.1",
6
  "plugin_description": "The most advanced drag and drop form builder plugin for WordPress",
7
  "plugin_uri": "https://wpfluentform.com",
8
  "plugin_license": "GPLv2 or later",
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: contact form, form builder, form builder, forms, form creator, custom form
4
  Requires at least: 4.5
5
  Tested up to: 4.9.2
6
  Requires PHP: 5.4
7
- Stable tag: 1.3.0
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
4
  Requires at least: 4.5
5
  Tested up to: 4.9.2
6
  Requires PHP: 5.4
7
+ Stable tag: 1.3.1
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10