diff --git a/accessibility-checker.php b/accessibility-checker.php index 2a8a1a13..ee46a7e8 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.14.1 + * Version: 1.14.2 * 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.14.1' ); + define( 'EDAC_VERSION', '1.14.2' ); } // Current database version. diff --git a/admin/class-ajax.php b/admin/class-ajax.php index 2b943416..ad8f0b90 100644 --- a/admin/class-ajax.php +++ b/admin/class-ajax.php @@ -684,7 +684,7 @@ function ( $value ) { // For small batches of IDs, we can just loop through. foreach ( $ids as $id ) { // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching -- Safe variable used for table name, caching not required for one time operation. - $wpdb->query( $wpdb->prepare( 'UPDATE %i SET ignre = %d, ignre_user = %d, ignre_date = %s, ignre_comment = %s, ignre_global = %d WHERE siteid = %d and object = %d', $table_name, $ignre, $ignre_user, $ignre_date, $ignre_comment, $ignore_global, $siteid, $id ) ); + $wpdb->query( $wpdb->prepare( 'UPDATE %i SET ignre = %d, ignre_user = %d, ignre_date = %s, ignre_comment = %s, ignre_global = %d WHERE siteid = %d and id = %d', $table_name, $ignre, $ignre_user, $ignre_date, $ignre_comment, $ignore_global, $siteid, $id ) ); } } diff --git a/package.json b/package.json index e70e5885..49d3e8b4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "accessibility-checker", - "version": "1.14.1", + "version": "1.14.2", "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 8d8d7b81..f64644d1 100644 --- a/readme.txt +++ b/readme.txt @@ -171,6 +171,11 @@ No, Accessibility Checker runs completely on your server and does not require yo == Changelog == += 1.14.2 = +* Enhancement: Reduce false positives for underlined text check +* Fixed: Frontend highlighter could not be moved to the right side of the window on mobile +* Fixed: Issue where ignores were not being saved and failing silently + = 1.14.1 = * Fixed: Prevent settings page layout issue