Version Description
- Fixed spelling mistake in deactivate hook that stopped deactivate running properly.
Download this release
Release Info
Developer | l3rady |
Plugin | WP Updates Notifier |
Version | 1.0.1 |
Comparing to | |
See all releases |
Code changes from version 1.0 to 1.0.1
- readme.txt +4 -1
- wp-updates-notifier.php +2 -2
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://l3rady.com/donate
|
|
4 |
Tags: admin, theme, monitor, plugin, notification, upgrade, security
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 3.1.3
|
7 |
-
Stable tag: 1.0
|
8 |
|
9 |
Sends email to notify you if there are any updates for your WordPress site. Can notify about core, plugin and theme updates.
|
10 |
|
@@ -47,5 +47,8 @@ This plugin is a fork of [Update Notifier](http://wordpress.org/extend/plugins/u
|
|
47 |
|
48 |
== Changelog ==
|
49 |
|
|
|
|
|
|
|
50 |
= 1.0 =
|
51 |
* Initial release
|
4 |
Tags: admin, theme, monitor, plugin, notification, upgrade, security
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 3.1.3
|
7 |
+
Stable tag: 1.0.1
|
8 |
|
9 |
Sends email to notify you if there are any updates for your WordPress site. Can notify about core, plugin and theme updates.
|
10 |
|
47 |
|
48 |
== Changelog ==
|
49 |
|
50 |
+
= 1.0.1 =
|
51 |
+
* Fixed spelling mistake in deactivate hook that stopped deactivate running properly.
|
52 |
+
|
53 |
= 1.0 =
|
54 |
* Initial release
|
wp-updates-notifier.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: WP Updates Notifier
|
|
4 |
Plugin URI: http://l3rady.com/projects/wp-updates-notifier/
|
5 |
Description: Sends email to notify you if there are any updates for your WordPress site. Can notify about core, plugin and theme updates.
|
6 |
Author: Scott Cariss
|
7 |
-
Version: 1.0
|
8 |
Author URI: http://l3rady.com/
|
9 |
*/
|
10 |
|
@@ -41,7 +41,7 @@ if (!class_exists('sc_WPUpdatesNotifier')) {
|
|
41 |
$this->settingsUpToDate();
|
42 |
// Create Activation and Deactivation Hooks
|
43 |
register_activation_hook(__FILE__, array(&$this, 'activate'));
|
44 |
-
register_deactivation_hook(__FILE__, array(&$this, '
|
45 |
// Internationalization
|
46 |
load_plugin_textdomain('wp-updates-notifier', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/');
|
47 |
// Add Filters
|
4 |
Plugin URI: http://l3rady.com/projects/wp-updates-notifier/
|
5 |
Description: Sends email to notify you if there are any updates for your WordPress site. Can notify about core, plugin and theme updates.
|
6 |
Author: Scott Cariss
|
7 |
+
Version: 1.0.1
|
8 |
Author URI: http://l3rady.com/
|
9 |
*/
|
10 |
|
41 |
$this->settingsUpToDate();
|
42 |
// Create Activation and Deactivation Hooks
|
43 |
register_activation_hook(__FILE__, array(&$this, 'activate'));
|
44 |
+
register_deactivation_hook(__FILE__, array(&$this, 'deactivate'));
|
45 |
// Internationalization
|
46 |
load_plugin_textdomain('wp-updates-notifier', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/');
|
47 |
// Add Filters
|