Skip to content

Commit 6c753fc

Browse files
authored
Merge pull request #727 from equalizedigital/release/1.15.2
Hotfix: Release v1.15.2
2 parents 2c6b533 + fda6d5b commit 6c753fc

4 files changed

Lines changed: 8 additions & 5 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.1
13+
* Version: 1.15.2
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.1' );
38+
define( 'EDAC_VERSION', '1.15.2' );
3939
}
4040

4141
// Current database version.

admin/class-settings.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public static function get_scannable_post_types() {
3232
// Check if the new settings class exists. This is added to allow for backwards compatibility
3333
// with the old settings class. The old settings class check should be removed after a few releases.
3434
$new_settings_class_exists = class_exists( 'EqualizeDigital\AccessibilityCheckerPro\Admin\Settings' );
35-
if ( ! class_exists( '\EDACP\Settings' ) || ! $new_settings_class_exists ) {
35+
if ( ! class_exists( '\EDACP\Settings' ) && ! $new_settings_class_exists ) {
3636

3737
$post_types = Helpers::get_option_as_array( 'edac_post_types' );
3838

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.1",
3+
"version": "1.15.2",
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: 4 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.1
6+
Stable tag: 1.15.2
77
License: GPLv2 or later
88
License URI: http://www.gnu.org/licenses/gpl-2.0.html
99

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

172172
== Changelog ==
173173

174+
= 1.15.2 =
175+
* Fixed: Issue where CPT results would not be reflected in dashboard widgets and reports
176+
174177
= 1.15.1 =
175178
* Fixed: Issue where a modal could result in JS error preventing display
176179
* Fixed: Situations where Gutenberg created new posts may not trigger the JS scan when publishing

0 commit comments

Comments
 (0)