Version Description
Download this release
Release Info
Developer | whiteshadow |
Plugin | Broken Link Checker |
Version | 0.2.2.1 |
Comparing to | |
See all releases |
Code changes from version 0.2.2 to 0.2.2.1
- broken-link-checker.php +5 -1
- readme.txt +1 -1
broken-link-checker.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Broken Link Checker
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/broken-link-checker/
|
5 |
Description: Checks your posts for broken links and missing images and notifies you on the dashboard if any are found.
|
6 |
-
Version: 0.2.2
|
7 |
Author: Janis Elsts
|
8 |
Author URI: http://w-shadow.com/blog/
|
9 |
*/
|
@@ -203,6 +203,10 @@ class ws_broken_link_checker {
|
|
203 |
echo $reminder;
|
204 |
?>
|
205 |
<div class="wrap"><h2>Broken Link Checker Options</h2>
|
|
|
|
|
|
|
|
|
206 |
<form name="link_checker_options" method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>?page=<?php echo plugin_basename(__FILE__); ?>&updated=true">
|
207 |
<p class="submit"><input type="submit" name="Submit" value="Update Options »" /></p>
|
208 |
|
3 |
Plugin Name: Broken Link Checker
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/broken-link-checker/
|
5 |
Description: Checks your posts for broken links and missing images and notifies you on the dashboard if any are found.
|
6 |
+
Version: 0.2.2.1
|
7 |
Author: Janis Elsts
|
8 |
Author URI: http://w-shadow.com/blog/
|
9 |
*/
|
203 |
echo $reminder;
|
204 |
?>
|
205 |
<div class="wrap"><h2>Broken Link Checker Options</h2>
|
206 |
+
<?php if(!function_exists('curl_init')){ ?>
|
207 |
+
<strong>Error: <a href='http://curl.haxx.se/libcurl/php/'>CURL library</a>
|
208 |
+
is not installed. This plugin won't work.</strong><br/>
|
209 |
+
<?php }; ?>
|
210 |
<form name="link_checker_options" method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>?page=<?php echo plugin_basename(__FILE__); ?>&updated=true">
|
211 |
<p class="submit"><input type="submit" name="Submit" value="Update Options »" /></p>
|
212 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: whiteshadow
|
|
3 |
Tags: links, broken, maintenance
|
4 |
Requires at least: 2.0.2
|
5 |
Tested up to: 2.3
|
6 |
-
Stable tag: 0.2.2
|
7 |
|
8 |
This plugin will check your posts for broken links and missing images in background and notify you on the dashboard if any are found.
|
9 |
|
3 |
Tags: links, broken, maintenance
|
4 |
Requires at least: 2.0.2
|
5 |
Tested up to: 2.3
|
6 |
+
Stable tag: 0.2.2.1
|
7 |
|
8 |
This plugin will check your posts for broken links and missing images in background and notify you on the dashboard if any are found.
|
9 |
|