From 3403ecc0b2359a777df805fd653fa5019a1ddcd3 Mon Sep 17 00:00:00 2001 From: Matthias Kittsteiner Date: Sat, 16 Sep 2023 21:08:11 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20Prepare=20version=201.1.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 3 +++ form-block.php | 4 ++-- readme.txt | 3 +++ 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e4586cc..aa6eefb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 1.1.4 +* Fixed: Sending potentially the wrong checkbox/radio button value if multiple fields have the same name. There is now a new "value" field available for these input types. Please review your forms and adjust the value for your inputs to fix this issue. + ## 1.1.3 * Fixed: Invalid fields are now marked via `aria-invalid` for better accessibility * Fixed: Added `aria-hidden="true"` to the asterisk, marking a field as required, for better accessibility diff --git a/form-block.php b/form-block.php index a01dd8d..40d1dfd 100644 --- a/form-block.php +++ b/form-block.php @@ -18,7 +18,7 @@ Plugin Name: Form Block Plugin URI: https://formblock.pro/en/ Description: An extensive yet user-friendly form block. -Version: 1.1.3 +Version: 1.1.4 Author: Epiphyt Author URI: https://epiph.yt License: GPL2 @@ -43,7 +43,7 @@ // exit if ABSPATH is not defined defined( 'ABSPATH' ) || exit; -define( 'FORM_BLOCK_VERSION', '1.1.3' ); +define( 'FORM_BLOCK_VERSION', '1.1.4' ); if ( ! defined( 'EPI_FORM_BLOCK_BASE' ) ) { define( 'EPI_FORM_BLOCK_BASE', WP_PLUGIN_DIR . '/form-block/' ); diff --git a/readme.txt b/readme.txt index 92d21a7..4432a8b 100644 --- a/readme.txt +++ b/readme.txt @@ -43,6 +43,9 @@ We are [Epiphyt](https://epiph.yt/), your friendly neighborhood WordPress plugin == Changelog == += 1.1.4 = +* Fixed: Sending potentially the wrong checkbox/radio button value if multiple fields have the same name. There is now a new "value" field available for these input types. Please review your forms and adjust the value for your inputs to fix this issue. + = 1.1.3 = * Fixed: Invalid fields are now marked via `aria-invalid` for better accessibility * Fixed: Added `aria-hidden="true"` to the asterisk, marking a field as required, for better accessibility