diff --git a/readme.md b/readme.md index 1dd8dda..d32cc94 100644 --- a/readme.md +++ b/readme.md @@ -9,9 +9,9 @@ Improving the Accessibility of your WordPress site. * Donate link: https://www.joedolson.com/donate/ * Tags: accessibility, WordPress * Requires at least: 4.4 -* Tested up to: 5.7 +* Tested up to: 5.8 * Requires PHP: 5.3 -* Stable tag: `1.7.7` +* Stable tag: `1.7.9` * License: GPLv2 or later * License URI: http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/readme.txt b/src/readme.txt index 5b0f741..0ea95b2 100644 --- a/src/readme.txt +++ b/src/readme.txt @@ -5,7 +5,7 @@ Tags: title, accessibility, accessible, navigation, wcag, a11y, section508, focu Requires at least: 3.4.2 Requires PHP: 5.6 Tested up to: 5.8 -Stable tag: 1.7.8 +Stable tag: 1.7.9 Text Domain: wp-accessibility License: GPLv2 or later @@ -73,6 +73,10 @@ The plug-in is intended to help with deficiencies commonly found in themes and t [Suggest a change!](https://github.com/joedolson/wp-accessibility/issues/) += 1.7.9 = + +* Bug fix: potentially undeclared variable in 1.7.8. + = 1.7.8 = * Bug fix: Avoid showing longdesc interface if no description defined. diff --git a/src/wp-accessibility.php b/src/wp-accessibility.php index 8a1e67b..42de9cc 100644 --- a/src/wp-accessibility.php +++ b/src/wp-accessibility.php @@ -17,7 +17,7 @@ * Domain Path: /lang * License: GPL-2.0+ * License URI: http://www.gnu.org/license/gpl-2.0.txt - * Version: 1.7.8 + * Version: 1.7.9 */ /* @@ -69,7 +69,7 @@ function wpa_admin_menu() { * Install on activation. */ function wpa_install() { - $wpa_version = '1.7.8'; + $wpa_version = '1.7.9'; if ( 'true' !== get_option( 'wpa_installed' ) ) { add_option( 'rta_from_tag_clouds', 'on' ); add_option( 'asl_styles_focus', '' );