Skip to content

Commit 8184d68

Browse files
authored
Merge pull request #758 from equalizedigital/hotfix/1.15.3
Hotfix/1.15.3
2 parents 6c753fc + 1e5d170 commit 8184d68

5 files changed

Lines changed: 10 additions & 6 deletions

File tree

accessibility-checker.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Plugin Name: Accessibility Checker
1111
* Plugin URI: https://a11ychecker.com
1212
* Description: Audit and check your website for accessibility before you hit publish. In-post accessibility scanner and guidance.
13-
* Version: 1.15.2
13+
* Version: 1.15.3
1414
* Author: Equalize Digital
1515
* Author URI: https://equalizedigital.com
1616
* License: GPL-2.0+
@@ -35,7 +35,7 @@
3535

3636
// Current plugin version.
3737
if ( ! defined( 'EDAC_VERSION' ) ) {
38-
define( 'EDAC_VERSION', '1.15.2' );
38+
define( 'EDAC_VERSION', '1.15.3' );
3939
}
4040

4141
// Current database version.

includes/rules/missing_form_label.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
function edac_rule_missing_form_label( $content, $post ) { // phpcs:ignore -- $post is reserved for future use or for compliance with a specific interface.
1616

1717
$dom = $content['html'];
18-
$fields = $dom->find( 'input' );
18+
$fields = $dom->find( 'input, textarea, select' );
1919
$errors = [];
2020

2121
foreach ( $fields as $field ) {

includes/rules/slider_present.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function edac_rule_slider_present( $content, $post ) { // phpcs:ignore -- $post
3939

4040
$dom = $content['html'];
4141
$errors = [];
42-
$elements = $dom->find( '.slider, .carousel, .owl-carousel, .soliloquy-container, .n2-section-smartslider, .metaslider, .master-slider, [data-layerslider-uid], .rev_slider, .royalSlider, .wonderpluginslider, .meteor-slides, .flexslider, .slick-slider, .swiper-container, .flickity-slider, .spacegallery, .blueimp-gallery, .seq-active, .siema, .keen-slider, [data-jssor-slider], .bxslider, .glide--slider' );
42+
$elements = $dom->find( '.slider, .carousel, .owl-carousel, .soliloquy-container, .n2-section-smartslider, .metaslider, .master-slider, [data-layerslider-uid], .rev_slider, .royalSlider, .wonderpluginslider, .meteor-slides, .flexslider, .slick-slider, .uagb-slick-carousel, .swiper-container, .flickity-slider, .spacegallery, .blueimp-gallery, .seq-active, .siema, .keen-slider, [data-jssor-slider], .bxslider, .glide--slider' );
4343

4444
if ( $elements ) {
4545
foreach ( $elements as $element ) {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "accessibility-checker",
3-
"version": "1.15.2",
3+
"version": "1.15.3",
44
"description": "Audit and check your website for accessibility before you hit publish. In-post accessibility scanner and guidance.",
55
"author": "Equalize Digital",
66
"license": "GPL-2.0+",

readme.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: equalizedigital, alh0319, stevejonesdev
33
Tags: accessibility, accessible, wcag, ada, WP accessibility
44
Requires at least: 6.2
55
Tested up to: 6.6.1
6-
Stable tag: 1.15.2
6+
Stable tag: 1.15.3
77
License: GPLv2 or later
88
License URI: http://www.gnu.org/licenses/gpl-2.0.html
99

@@ -171,6 +171,10 @@ No, Accessibility Checker runs completely on your server and does not require yo
171171

172172
== Changelog ==
173173

174+
= 1.15.3
175+
* Enhancement: Detect missing labels on more elements.
176+
* Enhancement: Detect slick slider that gets initialized after the page loads.
177+
174178
= 1.15.2 =
175179
* Fixed: Issue where CPT results would not be reflected in dashboard widgets and reports
176180

0 commit comments

Comments
 (0)