Broken Link Checker - Version 1.11.18

Version Description

  • Updated UA string
Download this release

Release Info

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

Code changes from version 1.11.17 to 1.11.18

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.17
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.18
14
  * Author: WPMU DEV
15
  * Author URI: https://wpmudev.com/
16
  * Text Domain: broken-link-checker
modules/checkers/http.php CHANGED
@@ -175,7 +175,7 @@ class blcCurlHttp extends blcHttpCheckerBase {
175
  curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );
176
 
177
  //Masquerade as a recent version of Chrome
178
- $ua = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36';
179
  curl_setopt( $ch, CURLOPT_USERAGENT, $ua );
180
 
181
  //Close the connection after the request (disables keep-alive). The plugin rate-limits requests,
175
  curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );
176
 
177
  //Masquerade as a recent version of Chrome
178
+ $ua = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.34 Safari/537.36';
179
  curl_setopt( $ch, CURLOPT_USERAGENT, $ua );
180
 
181
  //Close the connection after the request (disables keep-alive). The plugin rate-limits requests,
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: 5.8
6
- Stable tag: 1.11.16
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -67,6 +67,9 @@ To upgrade your installation
67
 
68
  == Changelog ==
69
 
 
 
 
70
  = 1.11.17 =
71
  * Fix security vulnerability
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.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
 
68
  == Changelog ==
69
 
70
+ = 1.11.18 =
71
+ * Updated UA string
72
+
73
  = 1.11.17 =
74
  * Fix security vulnerability
75