Version Description
Download this release
Release Info
Developer | whiteshadow |
Plugin | Broken Link Checker |
Version | 0.5.10.1 |
Comparing to | |
See all releases |
Code changes from version 0.5.10 to 0.5.10.1
- broken-link-checker.php +1 -1
- highlighter-class.php +1 -1
- readme.txt +1 -1
broken-link-checker.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: Broken Link Checker
|
5 |
Plugin URI: http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/
|
6 |
Description: Checks your posts for broken links and missing images and notifies you on the dashboard if any are found.
|
7 |
-
Version: 0.5.10
|
8 |
Author: Janis Elsts
|
9 |
Author URI: http://w-shadow.com/blog/
|
10 |
*/
|
4 |
Plugin Name: Broken Link Checker
|
5 |
Plugin URI: http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/
|
6 |
Description: Checks your posts for broken links and missing images and notifies you on the dashboard if any are found.
|
7 |
+
Version: 0.5.10.1
|
8 |
Author: Janis Elsts
|
9 |
Author URI: http://w-shadow.com/blog/
|
10 |
*/
|
highlighter-class.php
CHANGED
@@ -59,7 +59,7 @@ class blcLinkHighlighter {
|
|
59 |
|
60 |
function mark_broken_links($matches){
|
61 |
//TODO: Tooltip-style popups with more info
|
62 |
-
$url = blcUtility::normalize_url( html_entity_decode( $matches[3], $this->current_permalink )
|
63 |
if( isset( $this->links_to_remove[$url] ) ){
|
64 |
return $matches[1].$matches[2].$matches[3].$matches[2].' class="broken_link" '.$matches[4].
|
65 |
$matches[5].$matches[6];
|
59 |
|
60 |
function mark_broken_links($matches){
|
61 |
//TODO: Tooltip-style popups with more info
|
62 |
+
$url = blcUtility::normalize_url( html_entity_decode( $matches[3] ), $this->current_permalink );
|
63 |
if( isset( $this->links_to_remove[$url] ) ){
|
64 |
return $matches[1].$matches[2].$matches[3].$matches[2].' class="broken_link" '.$matches[4].
|
65 |
$matches[5].$matches[6];
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: whiteshadow
|
|
3 |
Tags: links, broken, maintenance, blogroll, custom fields, admin
|
4 |
Requires at least: 2.7.0
|
5 |
Tested up to: 2.9
|
6 |
-
Stable tag: 0.5.10
|
7 |
|
8 |
This plugin will check your posts, custom fields and the blogroll for broken links and missing images and notify you if any are found.
|
9 |
|
3 |
Tags: links, broken, maintenance, blogroll, custom fields, admin
|
4 |
Requires at least: 2.7.0
|
5 |
Tested up to: 2.9
|
6 |
+
Stable tag: 0.5.10.1
|
7 |
|
8 |
This plugin will check your posts, custom fields and the blogroll for broken links and missing images and notify you if any are found.
|
9 |
|