Version Description
- Fixed: Vulnerability on submissions page.
Download this release
Release Info
| Developer | webdorado |
| Plugin | |
| Version | 1.13.4 |
| Comparing to | |
| See all releases | |
Code changes from version 1.13.3 to 1.13.4
- admin/controllers/Submissions_fm.php +3 -3
- admin/models/Submissions_fm.php +1 -1
- contact-form-maker.php +3 -3
- readme.txt +5 -2
admin/controllers/Submissions_fm.php
CHANGED
|
@@ -200,8 +200,8 @@ class FMControllerSubmissions_fmc extends CFMAdminController {
|
|
| 200 |
$params['searched_ids'] = $labels_parameters[8] ? implode(',', $labels_parameters[8]) : '';
|
| 201 |
$params['groupids'] = $labels_parameters[8] ? array_reverse($labels_parameters[8]) : array();
|
| 202 |
|
| 203 |
-
$params['order_by']
|
| 204 |
-
$params['asc_or_desc']
|
| 205 |
|
| 206 |
$lists = $labels_parameters[2];
|
| 207 |
$params['lists'] = $lists;
|
|
@@ -230,7 +230,7 @@ class FMControllerSubmissions_fmc extends CFMAdminController {
|
|
| 230 |
if ( !empty($_POST['order_by']) || !empty($_POST['asc_or_desc']) ) {
|
| 231 |
$is_sort = true;
|
| 232 |
$order_by = $_POST['order_by'];
|
| 233 |
-
$asc_or_desc = $_POST['asc_or_desc'];
|
| 234 |
}
|
| 235 |
if ( !empty($is_search) || $is_sort || isset($_POST['current_page']) ) {
|
| 236 |
if ( !empty($_POST['fm_is_search']) ) {
|
| 200 |
$params['searched_ids'] = $labels_parameters[8] ? implode(',', $labels_parameters[8]) : '';
|
| 201 |
$params['groupids'] = $labels_parameters[8] ? array_reverse($labels_parameters[8]) : array();
|
| 202 |
|
| 203 |
+
$params['order_by'] = $order_by = WDW_FM_Library(self::PLUGIN)->get('order_by', 'group_id');
|
| 204 |
+
$params['asc_or_desc'] = $asc_or_desc = (WDW_FM_Library(self::PLUGIN)->get('asc_or_desc', 'desc') == 'desc' ? 'desc' : 'asc');
|
| 205 |
|
| 206 |
$lists = $labels_parameters[2];
|
| 207 |
$params['lists'] = $lists;
|
| 230 |
if ( !empty($_POST['order_by']) || !empty($_POST['asc_or_desc']) ) {
|
| 231 |
$is_sort = true;
|
| 232 |
$order_by = $_POST['order_by'];
|
| 233 |
+
$asc_or_desc = ($_POST['asc_or_desc'] == 'desc' ? 'desc' : 'asc');
|
| 234 |
}
|
| 235 |
if ( !empty($is_search) || $is_sort || isset($_POST['current_page']) ) {
|
| 236 |
if ( !empty($_POST['fm_is_search']) ) {
|
admin/models/Submissions_fm.php
CHANGED
|
@@ -130,7 +130,7 @@ class FMModelSubmissions_fmc extends CFMAdminModel {
|
|
| 130 |
$where2 = array();
|
| 131 |
|
| 132 |
$order_by = WDW_FM_Library(self::PLUGIN)->get('order_by', 'group_id');
|
| 133 |
-
$asc_or_desc
|
| 134 |
$lists['hide_label_list'] = WDW_FM_Library(self::PLUGIN)->get('hide_label_list', '');
|
| 135 |
$lists['startdate'] = WDW_FM_Library(self::PLUGIN)->get('startdate', '');
|
| 136 |
$lists['enddate'] = WDW_FM_Library(self::PLUGIN)->get('enddate', '');
|
| 130 |
$where2 = array();
|
| 131 |
|
| 132 |
$order_by = WDW_FM_Library(self::PLUGIN)->get('order_by', 'group_id');
|
| 133 |
+
$asc_or_desc = (WDW_FM_Library(self::PLUGIN)->get('asc_or_desc', 'desc') == 'desc' ? 'desc' : 'asc');
|
| 134 |
$lists['hide_label_list'] = WDW_FM_Library(self::PLUGIN)->get('hide_label_list', '');
|
| 135 |
$lists['startdate'] = WDW_FM_Library(self::PLUGIN)->get('startdate', '');
|
| 136 |
$lists['enddate'] = WDW_FM_Library(self::PLUGIN)->get('enddate', '');
|
contact-form-maker.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
* Plugin Name: Contact Form Maker
|
| 4 |
* Plugin URI: https://web-dorado.com/products/form-maker-wordpress.html
|
| 5 |
* Description: WordPress Contact Form Maker is a simple contact form builder, which allows the user with almost no knowledge of programming to create and edit different type of contact forms.
|
| 6 |
-
* Version: 1.13.
|
| 7 |
* Author: WebDorado Form Builder Team
|
| 8 |
* Author URI: https://web-dorado.com/wordpress-plugins-bundle.html
|
| 9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
|
@@ -95,8 +95,8 @@ final class WDCFM {
|
|
| 95 |
$this->plugin_url = plugins_url(plugin_basename(dirname(__FILE__)));
|
| 96 |
$this->front_urls = $this->get_front_urls();
|
| 97 |
$this->main_file = plugin_basename(__FILE__);
|
| 98 |
-
$this->plugin_version = '1.13.
|
| 99 |
-
$this->db_version = '2.13.
|
| 100 |
$this->menu_postfix = ($this->is_free == 2 ? '_fmc' : '_fm');
|
| 101 |
$this->plugin_postfix = ($this->is_free == 2 ? '_fmc' : '');
|
| 102 |
$this->menu_slug = 'manage' . $this->menu_postfix;
|
| 3 |
* Plugin Name: Contact Form Maker
|
| 4 |
* Plugin URI: https://web-dorado.com/products/form-maker-wordpress.html
|
| 5 |
* Description: WordPress Contact Form Maker is a simple contact form builder, which allows the user with almost no knowledge of programming to create and edit different type of contact forms.
|
| 6 |
+
* Version: 1.13.4
|
| 7 |
* Author: WebDorado Form Builder Team
|
| 8 |
* Author URI: https://web-dorado.com/wordpress-plugins-bundle.html
|
| 9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
| 95 |
$this->plugin_url = plugins_url(plugin_basename(dirname(__FILE__)));
|
| 96 |
$this->front_urls = $this->get_front_urls();
|
| 97 |
$this->main_file = plugin_basename(__FILE__);
|
| 98 |
+
$this->plugin_version = '1.13.4';
|
| 99 |
+
$this->db_version = '2.13.4';
|
| 100 |
$this->menu_postfix = ($this->is_free == 2 ? '_fmc' : '_fm');
|
| 101 |
$this->plugin_postfix = ($this->is_free == 2 ? '_fmc' : '');
|
| 102 |
$this->menu_slug = 'manage' . $this->menu_postfix;
|
readme.txt
CHANGED
|
@@ -1,9 +1,9 @@
|
|
| 1 |
-
|
| 2 |
Contributors: webdorado,10web
|
| 3 |
Tags: contact, contact form, email, forms, contact forms, custom form, feedback, form builder, form manager, form maker, forms builder, form builder wordpress
|
| 4 |
Requires at least: 4.6
|
| 5 |
Tested up to: 5.1
|
| 6 |
-
Stable tag: 1.13.
|
| 7 |
License: GPLv2 or later
|
| 8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 9 |
|
|
@@ -79,6 +79,9 @@ After downloading the ZIP file,
|
|
| 79 |
|
| 80 |
== Changelog ==
|
| 81 |
|
|
|
|
|
|
|
|
|
|
| 82 |
= 1.13.3 =
|
| 83 |
* Fixed: Security issue.
|
| 84 |
* Fixed: Scroll to required address field.
|
| 1 |
+
=== Contact Form by WD - responsive drag & drop contact form builder tool ===
|
| 2 |
Contributors: webdorado,10web
|
| 3 |
Tags: contact, contact form, email, forms, contact forms, custom form, feedback, form builder, form manager, form maker, forms builder, form builder wordpress
|
| 4 |
Requires at least: 4.6
|
| 5 |
Tested up to: 5.1
|
| 6 |
+
Stable tag: 1.13.4
|
| 7 |
License: GPLv2 or later
|
| 8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 9 |
|
| 79 |
|
| 80 |
== Changelog ==
|
| 81 |
|
| 82 |
+
= 1.13.4 =
|
| 83 |
+
* Fixed: Vulnerability on submissions page.
|
| 84 |
+
|
| 85 |
= 1.13.3 =
|
| 86 |
* Fixed: Security issue.
|
| 87 |
* Fixed: Scroll to required address field.
|
