Version Description
- Fix: GDPR field prints HTML as text
Download this release
Release Info
| Developer | alerzhus |
| Plugin | |
| Version | 1.11.4 |
| Comparing to | |
| See all releases | |
Code changes from version 1.11.3 to 1.11.4
- forminator.php +2 -2
- languages/forminator.pot +2 -2
- library/fields/gdprcheckbox.php +1 -1
- readme.txt +6 -2
forminator.php
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?php
|
| 2 |
/**
|
| 3 |
* Plugin Name: Forminator
|
| 4 |
-
* Version: 1.11.
|
| 5 |
* Plugin URI: https://premium.wpmudev.org/project/forminator/
|
| 6 |
* Description: Capture user information (as detailed as you like), engage users with interactive polls that show real-time results and graphs, “no wrong answer” Facebook-style quizzes and knowledge tests.
|
| 7 |
* Author: WPMU DEV
|
|
@@ -34,7 +34,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
| 34 |
}
|
| 35 |
|
| 36 |
if ( ! defined( 'FORMINATOR_VERSION' ) ) {
|
| 37 |
-
define( 'FORMINATOR_VERSION', '1.11.
|
| 38 |
}
|
| 39 |
|
| 40 |
if ( ! defined( 'FORMINATOR_SUI_VERSION' ) ) {
|
| 1 |
<?php
|
| 2 |
/**
|
| 3 |
* Plugin Name: Forminator
|
| 4 |
+
* Version: 1.11.4
|
| 5 |
* Plugin URI: https://premium.wpmudev.org/project/forminator/
|
| 6 |
* Description: Capture user information (as detailed as you like), engage users with interactive polls that show real-time results and graphs, “no wrong answer” Facebook-style quizzes and knowledge tests.
|
| 7 |
* Author: WPMU DEV
|
| 34 |
}
|
| 35 |
|
| 36 |
if ( ! defined( 'FORMINATOR_VERSION' ) ) {
|
| 37 |
+
define( 'FORMINATOR_VERSION', '1.11.4' );
|
| 38 |
}
|
| 39 |
|
| 40 |
if ( ! defined( 'FORMINATOR_SUI_VERSION' ) ) {
|
languages/forminator.pot
CHANGED
|
@@ -2,9 +2,9 @@
|
|
| 2 |
# This file is distributed under the same license as the Forminator package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
-
"Project-Id-Version: Forminator 1.11.
|
| 6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/forminator\n"
|
| 7 |
-
"POT-Creation-Date: 2020-
|
| 8 |
"MIME-Version: 1.0\n"
|
| 9 |
"Content-Type: text/plain; charset=utf-8\n"
|
| 10 |
"Content-Transfer-Encoding: 8bit\n"
|
| 2 |
# This file is distributed under the same license as the Forminator package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
+
"Project-Id-Version: Forminator 1.11.4\n"
|
| 6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/forminator\n"
|
| 7 |
+
"POT-Creation-Date: 2020-03-05 06:46:58+00:00\n"
|
| 8 |
"MIME-Version: 1.0\n"
|
| 9 |
"Content-Type: text/plain; charset=utf-8\n"
|
| 10 |
"Content-Transfer-Encoding: 8bit\n"
|
library/fields/gdprcheckbox.php
CHANGED
|
@@ -105,7 +105,7 @@ class Forminator_GdprCheckbox extends Forminator_Field {
|
|
| 105 |
$html = '';
|
| 106 |
$id = self::get_property( 'element_id', $field );
|
| 107 |
$name = $id;
|
| 108 |
-
$description =
|
| 109 |
$id = 'forminator-field-' . $id . '-' . uniqid();
|
| 110 |
$label = esc_html( self::get_property( 'field_label', $field ) );
|
| 111 |
|
| 105 |
$html = '';
|
| 106 |
$id = self::get_property( 'element_id', $field );
|
| 107 |
$name = $id;
|
| 108 |
+
$description = wp_kses_post( self::get_property( 'gdpr_description', $field ) );
|
| 109 |
$id = 'forminator-field-' . $id . '-' . uniqid();
|
| 110 |
$label = esc_html( self::get_property( 'field_label', $field ) );
|
| 111 |
|
readme.txt
CHANGED
|
@@ -1,13 +1,13 @@
|
|
| 1 |
=== Forminator Payment, Quiz and Contact Form Plugin ===
|
| 2 |
Plugin Name: Forminator Payment, Quiz and Contact Form Plugin
|
| 3 |
-
Version: 1.11.
|
| 4 |
Author: WPMU DEV
|
| 5 |
Author URI: https://premium.wpmudev.org/
|
| 6 |
Contributors: WPMUDEV
|
| 7 |
Tags: form, contact form, wordpress form plugin, quiz, email, paypal form wordpress, custom forms, form builder, online form, form maker, payment form
|
| 8 |
Requires at least: 4.6
|
| 9 |
Tested up to: 5.3
|
| 10 |
-
Stable tag: 1.11.
|
| 11 |
Requires PHP: 5.2.4
|
| 12 |
License: GPL v2 - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
| 13 |
|
|
@@ -167,6 +167,10 @@ We've put together a simple guide to Forminator contact forms on our blog. https
|
|
| 167 |
|
| 168 |
== Changelog ==
|
| 169 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 170 |
= 1.11.3 =
|
| 171 |
|
| 172 |
* Security Fix: Patch authenticated stored XSS
|
| 1 |
=== Forminator Payment, Quiz and Contact Form Plugin ===
|
| 2 |
Plugin Name: Forminator Payment, Quiz and Contact Form Plugin
|
| 3 |
+
Version: 1.11.4
|
| 4 |
Author: WPMU DEV
|
| 5 |
Author URI: https://premium.wpmudev.org/
|
| 6 |
Contributors: WPMUDEV
|
| 7 |
Tags: form, contact form, wordpress form plugin, quiz, email, paypal form wordpress, custom forms, form builder, online form, form maker, payment form
|
| 8 |
Requires at least: 4.6
|
| 9 |
Tested up to: 5.3
|
| 10 |
+
Stable tag: 1.11.4
|
| 11 |
Requires PHP: 5.2.4
|
| 12 |
License: GPL v2 - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
| 13 |
|
| 167 |
|
| 168 |
== Changelog ==
|
| 169 |
|
| 170 |
+
= 1.11.4 =
|
| 171 |
+
|
| 172 |
+
* Fix: GDPR field prints HTML as text
|
| 173 |
+
|
| 174 |
= 1.11.3 =
|
| 175 |
|
| 176 |
* Security Fix: Patch authenticated stored XSS
|
