diff --git a/accessibility-checker.php b/accessibility-checker.php
index f3293b7d..69db0e12 100755
--- a/accessibility-checker.php
+++ b/accessibility-checker.php
@@ -10,7 +10,7 @@
* Plugin Name: Accessibility Checker
* Plugin URI: https://a11ychecker.com
* Description: Audit and check your website for accessibility before you hit publish. In-post accessibility scanner and guidance.
- * Version: 1.16.0
+ * Version: 1.16.1
* Author: Equalize Digital
* Author URI: https://equalizedigital.com
* License: GPL-2.0+
@@ -35,7 +35,7 @@
// Current plugin version.
if ( ! defined( 'EDAC_VERSION' ) ) {
- define( 'EDAC_VERSION', '1.16.0' );
+ define( 'EDAC_VERSION', '1.16.1' );
}
// Current database version.
diff --git a/includes/rules.php b/includes/rules.php
index 6752220a..2822b52d 100644
--- a/includes/rules.php
+++ b/includes/rules.php
@@ -269,23 +269,6 @@
'longdesc=""
'
),
],
- [
- 'title' => esc_html__( 'Empty Form Label', 'accessibility-checker' ),
- 'info_url' => 'https://a11ychecker.com/help4109',
- 'slug' => 'empty_form_label',
- 'rule_type' => 'error',
- 'summary' => sprintf(
- // translators: %s is <label>
.
- esc_html__( 'An Empty Form Label error is triggered when a %s tag is present in your form and associated with an input (form field), but does not contain any text. To fix empty form label errors, you will need to determine how the field and form were created and then add text to the label for the field that is currently blank.', 'accessibility-checker' ),
- '<label>
'
- ),
- 'ruleset' => 'js',
- 'combines' => [ 'label' ],
- 'fixes' => [
- AddLabelToUnlabelledFormFieldsFix::get_slug(),
- CommentSearchLabelFix::get_slug(),
- ],
- ],
[
'title' => esc_html__( 'Missing Form Label', 'accessibility-checker' ),
'info_url' => 'https://a11ychecker.com/help1949',
diff --git a/package.json b/package.json
index 8bd69b91..b0ae2c0c 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "accessibility-checker",
- "version": "1.16.0",
+ "version": "1.16.1",
"description": "Audit and check your website for accessibility before you hit publish. In-post accessibility scanner and guidance.",
"author": "Equalize Digital",
"license": "GPL-2.0+",
diff --git a/readme.txt b/readme.txt
index 68e9134c..1c2003aa 100644
--- a/readme.txt
+++ b/readme.txt
@@ -2,8 +2,8 @@
Contributors: equalizedigital, alh0319, stevejonesdev
Tags: accessibility, accessible, wcag, ada, WP accessibility
Requires at least: 6.2
-Tested up to: 6.6.7
-Stable tag: 1.16.0
+Tested up to: 6.7.0
+Stable tag: 1.16.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -171,6 +171,9 @@ No, Accessibility Checker runs completely on your server and does not require yo
== Changelog ==
+= 1.16.1 =
+* Fix: Remove redundant empty_form_label rule definition.
+
= 1.16.0 =
* New: Introduced a system to handle automated fixes for issues that the scanner would discover.
* New: Fix to remove or update bad tabindex values on elements.
@@ -192,7 +195,7 @@ No, Accessibility Checker runs completely on your server and does not require yo
* Fix: Improve or add better aria-labels in several places.
* Fix: Don't flag empty paragraphs if they have aria-hidden.
-= 1.15.3
+= 1.15.3 =
* Enhancement: Detect missing labels on more elements.
* Enhancement: Detect slick slider that gets initialized after the page loads.