Version Description
= v190305 =
- Fix Issue with "Subscribe authors" functionality sending the emails to administrator instead of the post author
= v190214 =
- Fix Compatibility with some PHP versions and MySQL. Fixes other minor issues.
= v190117 =
- Upgrade The backend interface to make the UX simpler for the user and Add option to get information of your WordPress System. Improve Logging with PHP errors catching.
= v180225 = Fix Information that was not been validated on the backened.
Download this release
Release Info
Developer | wpkube |
Plugin | Subscribe To Comments Reloaded |
Version | 190305 |
Comparing to | |
See all releases |
Code changes from version 190304 to 190305
- readme.txt +3 -3
- subscribe-to-comments-reloaded.php +2 -2
- wp_subscribe_reloaded.php +1 -1
readme.txt
CHANGED
@@ -7,7 +7,7 @@ Requires at least: 4.0
|
|
7 |
Requires PHP: 5.6
|
8 |
Requires MySQL: 5.6
|
9 |
Tested up to: 5.1
|
10 |
-
Stable tag:
|
11 |
License: GPLv2 or later
|
12 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
13 |
|
@@ -100,7 +100,7 @@ Just go to the Options Panel and click the generate button. By generating a new
|
|
100 |
|
101 |
== Upgrade Notice ==
|
102 |
|
103 |
-
=
|
104 |
|
105 |
* **Fix** Issue with "Subscribe authors" functionality sending the emails to administrator instead of the post author
|
106 |
|
@@ -117,7 +117,7 @@ Just go to the Options Panel and click the generate button. By generating a new
|
|
117 |
|
118 |
== Changelog ==
|
119 |
|
120 |
-
=
|
121 |
|
122 |
* **Fix** Issue with "Subscribe authors" functionality sending the emails to administrator instead of the post author
|
123 |
|
7 |
Requires PHP: 5.6
|
8 |
Requires MySQL: 5.6
|
9 |
Tested up to: 5.1
|
10 |
+
Stable tag: 190305
|
11 |
License: GPLv2 or later
|
12 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
13 |
|
100 |
|
101 |
== Upgrade Notice ==
|
102 |
|
103 |
+
= v190305 =
|
104 |
|
105 |
* **Fix** Issue with "Subscribe authors" functionality sending the emails to administrator instead of the post author
|
106 |
|
117 |
|
118 |
== Changelog ==
|
119 |
|
120 |
+
= v190305 =
|
121 |
|
122 |
* **Fix** Issue with "Subscribe authors" functionality sending the emails to administrator instead of the post author
|
123 |
|
subscribe-to-comments-reloaded.php
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
/*
|
3 |
Plugin Name: Subscribe to Comments Reloaded
|
4 |
|
5 |
-
Version:
|
6 |
-
Stable tag:
|
7 |
Requires at least: 4.0
|
8 |
Tested up to: 5.1
|
9 |
|
2 |
/*
|
3 |
Plugin Name: Subscribe to Comments Reloaded
|
4 |
|
5 |
+
Version: 190305
|
6 |
+
Stable tag: 190305
|
7 |
Requires at least: 4.0
|
8 |
Tested up to: 5.1
|
9 |
|
wp_subscribe_reloaded.php
CHANGED
@@ -6,7 +6,7 @@ if ( ! function_exists( 'add_action' ) ) {
|
|
6 |
exit;
|
7 |
}
|
8 |
|
9 |
-
define( __NAMESPACE__.'\\VERSION','
|
10 |
define( __NAMESPACE__.'\\DEVELOPMENT', true );
|
11 |
define( __NAMESPACE__.'\\SLUG', "subscribe-to-comments-reloaded" );
|
12 |
|
6 |
exit;
|
7 |
}
|
8 |
|
9 |
+
define( __NAMESPACE__.'\\VERSION','190305' );
|
10 |
define( __NAMESPACE__.'\\DEVELOPMENT', true );
|
11 |
define( __NAMESPACE__.'\\SLUG', "subscribe-to-comments-reloaded" );
|
12 |
|