Version Description
- Added a workaround for auto-enclosures. The plugin should now parse the "enclosure" custom field correctly.
Download this release
Release Info
| Developer | whiteshadow |
| Plugin | |
| Version | 0.5.18 |
| Comparing to | |
| See all releases | |
Code changes from version 0.5.17 to 0.5.18
- broken-link-checker.php +1 -1
- core.php +3 -0
- readme.txt +10 -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.
|
| 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.18
|
| 8 |
Author: Janis Elsts
|
| 9 |
Author URI: http://w-shadow.com/blog/
|
| 10 |
*/
|
core.php
CHANGED
|
@@ -1547,6 +1547,9 @@ jQuery(function($){
|
|
| 1547 |
if ( !is_array( $values ) ) $values = array($values);
|
| 1548 |
|
| 1549 |
foreach( $values as $value ){
|
|
|
|
|
|
|
|
|
|
| 1550 |
|
| 1551 |
//Attempt to parse the $value as URL
|
| 1552 |
$url = blcUtility::normalize_url($value);
|
| 1547 |
if ( !is_array( $values ) ) $values = array($values);
|
| 1548 |
|
| 1549 |
foreach( $values as $value ){
|
| 1550 |
+
|
| 1551 |
+
//If this is a multiline field take the first line (workaround for the enclosure field).
|
| 1552 |
+
$value = trim( array_shift( explode("\n", $value) ) );
|
| 1553 |
|
| 1554 |
//Attempt to parse the $value as URL
|
| 1555 |
$url = blcUtility::normalize_url($value);
|
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.
|
| 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 |
|
|
@@ -60,6 +60,15 @@ To upgrade your installation
|
|
| 60 |
|
| 61 |
*This is an automatically generated changelog*
|
| 62 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 63 |
= 0.5.16 =
|
| 64 |
* Also try the upload directory when looking for places where to put the lockfile.
|
| 65 |
|
| 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.18
|
| 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 |
|
| 60 |
|
| 61 |
*This is an automatically generated changelog*
|
| 62 |
|
| 63 |
+
= 0.5.18 =
|
| 64 |
+
* Added a workaround for auto-enclosures. The plugin should now parse the "enclosure" custom field correctly.
|
| 65 |
+
|
| 66 |
+
= 0.5.17 =
|
| 67 |
+
* Added a redirect detection workaround for users that have safe\_mode or open\_basedir enabled.
|
| 68 |
+
|
| 69 |
+
= 0.5.16.1 =
|
| 70 |
+
* Be more careful when parsing safe\_mode and open\_basedir settings.
|
| 71 |
+
|
| 72 |
= 0.5.16 =
|
| 73 |
* Also try the upload directory when looking for places where to put the lockfile.
|
| 74 |
|
