Version Description
- Fix strict comparison causing db queries
Download this release
Release Info
Developer | panoslyrakis |
Plugin | Broken Link Checker |
Version | 1.11.21 |
Comparing to | |
See all releases |
Code changes from version 1.11.20 to 1.11.21
- broken-link-checker.php +1 -1
- core/init.php +1 -1
- readme.txt +4 -1
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.
|
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.21
|
14 |
* Author: WPMU DEV
|
15 |
* Author URI: https://wpmudev.com/
|
16 |
* Text Domain: broken-link-checker
|
core/init.php
CHANGED
@@ -271,7 +271,7 @@ if ( defined( 'BLC_ACTIVE' ) ) {
|
|
271 |
$init_done = true;
|
272 |
|
273 |
//Ensure the database is up to date
|
274 |
-
if ( BLC_DATABASE_VERSION
|
275 |
require_once BLC_DIRECTORY . '/includes/admin/db-upgrade.php';
|
276 |
blcDatabaseUpgrader::upgrade_database(); //Also updates the DB ver. in options['current_db_version'].
|
277 |
}
|
271 |
$init_done = true;
|
272 |
|
273 |
//Ensure the database is up to date
|
274 |
+
if ( BLC_DATABASE_VERSION != $blc_config_manager->options['current_db_version'] ) {
|
275 |
require_once BLC_DIRECTORY . '/includes/admin/db-upgrade.php';
|
276 |
blcDatabaseUpgrader::upgrade_database(); //Also updates the DB ver. in options['current_db_version'].
|
277 |
}
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ 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.
|
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.20 =
|
71 |
* Fix XSS vulnerability
|
72 |
|
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.21
|
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.21 =
|
71 |
+
* Fix strict comparison causing db queries
|
72 |
+
|
73 |
= 1.11.20 =
|
74 |
* Fix XSS vulnerability
|
75 |
|