Broken Link Checker - Version 1.11.19

Version Description

  • Enhance compatibility with WordPress 6.1
  • Fix deprecated sanitization filter FILTER_SANITIZE_STRING
Download this release

Release Info

Developer panoslyrakis
Plugin Icon 128x128 Broken Link Checker
Version 1.11.19
Comparing to
See all releases

Code changes from version 1.11.18 to 1.11.19

Files changed (3) hide show
  1. broken-link-checker.php +1 -1
  2. core/core.php +2 -1
  3. readme.txt +6 -2
broken-link-checker.php CHANGED
@@ -10,7 +10,7 @@
10
  * Plugin Name: Broken Link Checker
11
  * Plugin URI: https://wordpress.org/plugins/broken-link-checker/
12
  * Description: Checks your blog for broken links and missing images and notifies you on the dashboard if any are found.
13
- * Version: 1.11.18
14
  * Author: WPMU DEV
15
  * Author URI: https://wpmudev.com/
16
  * Text Domain: broken-link-checker
10
  * Plugin Name: Broken Link Checker
11
  * Plugin URI: https://wordpress.org/plugins/broken-link-checker/
12
  * Description: Checks your blog for broken links and missing images and notifies you on the dashboard if any are found.
13
+ * Version: 1.11.19
14
  * Author: WPMU DEV
15
  * Author URI: https://wpmudev.com/
16
  * Text Domain: broken-link-checker
core/core.php CHANGED
@@ -155,7 +155,8 @@ if ( ! class_exists( 'wsBrokenLinkChecker' ) ) {
155
  */
156
  public function admin_footer() {
157
  $fix = filter_input( INPUT_GET, 'fix-install-button', FILTER_VALIDATE_BOOLEAN );
158
- $tab = filter_input( INPUT_GET, 'tab', FILTER_SANITIZE_STRING );
 
159
  if ( true === $fix && 'plugin-information' === $tab ) {
160
  echo '<script>';
161
  echo "jQuery('#plugin_install_from_iframe').on('click', function() { window.location.href = jQuery(this).attr('href'); return false;});";
155
  */
156
  public function admin_footer() {
157
  $fix = filter_input( INPUT_GET, 'fix-install-button', FILTER_VALIDATE_BOOLEAN );
158
+ $tab = ! empty( $_GET['tab'] ) ? sanitize_text_field( wp_unslash( $_GET['tab'] ) ) : '';
159
+
160
  if ( true === $fix && 'plugin-information' === $tab ) {
161
  echo '<script>';
162
  echo "jQuery('#plugin_install_from_iframe').on('click', function() { window.location.href = jQuery(this).attr('href'); return false;});";
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: managewp, wpmudev
3
  Tags: links, broken links, internal link, external link, broken images, seo, test links, check links, bad links
4
  Requires at least: 5.2
5
- Tested up to: 6.0.1
6
- Stable tag: 1.11.18
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -67,6 +67,10 @@ To upgrade your installation
67
 
68
  == Changelog ==
69
 
 
 
 
 
70
  = 1.11.18 =
71
  * Updated UA string
72
 
2
  Contributors: managewp, wpmudev
3
  Tags: links, broken links, internal link, external link, broken images, seo, test links, check links, bad links
4
  Requires at least: 5.2
5
+ Tested up to: 6.1
6
+ Stable tag: 1.11.19
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
67
 
68
  == Changelog ==
69
 
70
+ = 1.11.19 =
71
+ * Enhance compatibility with WordPress 6.1
72
+ * Fix deprecated sanitization filter FILTER_SANITIZE_STRING
73
+
74
  = 1.11.18 =
75
  * Updated UA string
76