Version Description
Download this release
Release Info
Developer | MattyRob |
Plugin | Subscribe2 |
Version | 9.2 |
Comparing to | |
See all releases |
Code changes from version 9.1 to 9.2
- ChangeLog.txt +4 -0
- ReadMe.txt +2 -2
- admin/subscribers.php +1 -1
- subscribe2.php +2 -2
- subscribe2.pot +2 -2
ChangeLog.txt
CHANGED
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
1 |
= Version 9.1 by Matthew Robinson =
|
2 |
|
3 |
* Shortcode parameters are now not case sensitive
|
1 |
+
= Version 9.2 by Matthew Robinson =
|
2 |
+
|
3 |
+
* Fixed an error in the Registered User deletion code - thanks to Jay Wasack
|
4 |
+
|
5 |
= Version 9.1 by Matthew Robinson =
|
6 |
|
7 |
* Shortcode parameters are now not case sensitive
|
ReadMe.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: MattyRob, Skippy, RavanH, bhadaway
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2387904
|
4 |
Tags: posts, subscription, email, subscribe, notify, notification
|
5 |
Requires at least: 3.3
|
6 |
-
Tested up to: 3.8
|
7 |
-
Stable tag: 9.
|
8 |
License: GPL3
|
9 |
|
10 |
Sends a list of subscribers an email notification when new posts are published to your blog
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2387904
|
4 |
Tags: posts, subscription, email, subscribe, notify, notification
|
5 |
Requires at least: 3.3
|
6 |
+
Tested up to: 3.8.1
|
7 |
+
Stable tag: 9.2
|
8 |
License: GPL3
|
9 |
|
10 |
Sends a list of subscribers an email notification when new posts are published to your blog
|
admin/subscribers.php
CHANGED
@@ -68,7 +68,7 @@ if ( isset($_POST['s2_admin']) ) {
|
|
68 |
continue;
|
69 |
} else {
|
70 |
$users_deleted = __('User(s) deleted! Any posts made by these users were assigned to you', 'subscribe2');
|
71 |
-
wp_delete_user($user
|
72 |
}
|
73 |
}
|
74 |
echo "<div id=\"message\" class=\"updated fade\"><p><strong>" . $users_deleted_error . $users_deleted . "</strong></p></div>";
|
68 |
continue;
|
69 |
} else {
|
70 |
$users_deleted = __('User(s) deleted! Any posts made by these users were assigned to you', 'subscribe2');
|
71 |
+
wp_delete_user($user->ID, $current_user->ID);
|
72 |
}
|
73 |
}
|
74 |
echo "<div id=\"message\" class=\"updated fade\"><p><strong>" . $users_deleted_error . $users_deleted . "</strong></p></div>";
|
subscribe2.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Subscribe2
|
4 |
Plugin URI: http://subscribe2.wordpress.com
|
5 |
Description: Notifies an email list when new entries are posted.
|
6 |
-
Version: 9.
|
7 |
Author: Matthew Robinson
|
8 |
Author URI: http://subscribe2.wordpress.com
|
9 |
Licence: GPL3
|
@@ -55,7 +55,7 @@ if ( is_plugin_active_for_network(plugin_basename(__FILE__)) ) {
|
|
55 |
|
56 |
// our version number. Don't touch this or any line below
|
57 |
// unless you know exactly what you are doing
|
58 |
-
define( 'S2VERSION', '9.
|
59 |
define( 'S2PATH', trailingslashit(dirname(__FILE__)) );
|
60 |
define( 'S2DIR', trailingslashit(dirname(plugin_basename(__FILE__))) );
|
61 |
define( 'S2URL', plugin_dir_url(dirname(__FILE__)) . S2DIR );
|
3 |
Plugin Name: Subscribe2
|
4 |
Plugin URI: http://subscribe2.wordpress.com
|
5 |
Description: Notifies an email list when new entries are posted.
|
6 |
+
Version: 9.2
|
7 |
Author: Matthew Robinson
|
8 |
Author URI: http://subscribe2.wordpress.com
|
9 |
Licence: GPL3
|
55 |
|
56 |
// our version number. Don't touch this or any line below
|
57 |
// unless you know exactly what you are doing
|
58 |
+
define( 'S2VERSION', '9.2' );
|
59 |
define( 'S2PATH', trailingslashit(dirname(__FILE__)) );
|
60 |
define( 'S2DIR', trailingslashit(dirname(plugin_basename(__FILE__))) );
|
61 |
define( 'S2URL', plugin_dir_url(dirname(__FILE__)) . S2DIR );
|
subscribe2.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the Subscribe2 package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Subscribe2 9.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/Subscribe2\n"
|
7 |
-
"POT-Creation-Date: 2014-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
2 |
# This file is distributed under the same license as the Subscribe2 package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Subscribe2 9.2\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/Subscribe2\n"
|
7 |
+
"POT-Creation-Date: 2014-02-04 19:44:43+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|