Version Description
Download this release
Release Info
Developer | wpkube |
Plugin | Subscribe To Comments Reloaded |
Version | 191217 |
Comparing to | |
See all releases |
Code changes from version 191216 to 191217
- readme.txt +2 -2
- subscribe-to-comments-reloaded.php +1 -1
- wp_subscribe_reloaded.php +2 -2
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.3
|
10 |
-
Stable tag:
|
11 |
License: GPLv2 or later
|
12 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
13 |
|
@@ -99,7 +99,7 @@ Just go to the Options Panel and click the generate button. By generating a new
|
|
99 |
7. Manage the subscriptions on the Frontend Side.
|
100 |
|
101 |
== Changelog ==
|
102 |
-
=
|
103 |
* **Improvement** Option to enable/disable the plugin from setting cookies (email address after subscription)
|
104 |
* **Improvement** German translation improvements (thanks to Niklas Haupt)
|
105 |
|
7 |
Requires PHP: 5.6
|
8 |
Requires MySQL: 5.6
|
9 |
Tested up to: 5.3
|
10 |
+
Stable tag: 191217
|
11 |
License: GPLv2 or later
|
12 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
13 |
|
99 |
7. Manage the subscriptions on the Frontend Side.
|
100 |
|
101 |
== Changelog ==
|
102 |
+
= v191217 =
|
103 |
* **Improvement** Option to enable/disable the plugin from setting cookies (email address after subscription)
|
104 |
* **Improvement** German translation improvements (thanks to Niklas Haupt)
|
105 |
|
subscribe-to-comments-reloaded.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Plugin Name: Subscribe to Comments Reloaded
|
4 |
* Description: Subscribe to Comments Reloaded is a robust plugin that enables commenters to sign up for e-mail notifications. It includes a full-featured subscription manager that your commenters can use to unsubscribe to certain posts or suspend all notifications.
|
5 |
-
* Version:
|
6 |
* Author: WPKube
|
7 |
* Author URI: http://wpkube.com/
|
8 |
* License: GPL-2.0+
|
2 |
/**
|
3 |
* Plugin Name: Subscribe to Comments Reloaded
|
4 |
* Description: Subscribe to Comments Reloaded is a robust plugin that enables commenters to sign up for e-mail notifications. It includes a full-featured subscription manager that your commenters can use to unsubscribe to certain posts or suspend all notifications.
|
5 |
+
* Version: 191217
|
6 |
* Author: WPKube
|
7 |
* Author URI: http://wpkube.com/
|
8 |
* License: GPL-2.0+
|
wp_subscribe_reloaded.php
CHANGED
@@ -8,7 +8,7 @@ if ( ! function_exists( 'add_action' ) ) {
|
|
8 |
}
|
9 |
|
10 |
// globals
|
11 |
-
define( __NAMESPACE__.'\\VERSION','
|
12 |
define( __NAMESPACE__.'\\DEVELOPMENT', false );
|
13 |
define( __NAMESPACE__.'\\SLUG', "subscribe-to-comments-reloaded" );
|
14 |
|
@@ -1628,7 +1628,7 @@ if( ! class_exists('\\'.__NAMESPACE__.'\\wp_subscribe_reloaded') ) {
|
|
1628 |
( $subscribe_to_comments_action == 's' ) && ( $subscribe_to_comments_post_ID > 0 )
|
1629 |
) {
|
1630 |
$subscribe_to_comments_clean_email = $this->utils->clean_email( $_POST['subscribe_reloaded_email'] );
|
1631 |
-
if ( get_option( 'subscribe_reloaded_use_cookies', 'yes' ) ) {
|
1632 |
setcookie( 'comment_author_email_' . COOKIEHASH, $subscribe_to_comments_clean_email, time() + 1209600, '/' );
|
1633 |
}
|
1634 |
}
|
8 |
}
|
9 |
|
10 |
// globals
|
11 |
+
define( __NAMESPACE__.'\\VERSION','191217' );
|
12 |
define( __NAMESPACE__.'\\DEVELOPMENT', false );
|
13 |
define( __NAMESPACE__.'\\SLUG', "subscribe-to-comments-reloaded" );
|
14 |
|
1628 |
( $subscribe_to_comments_action == 's' ) && ( $subscribe_to_comments_post_ID > 0 )
|
1629 |
) {
|
1630 |
$subscribe_to_comments_clean_email = $this->utils->clean_email( $_POST['subscribe_reloaded_email'] );
|
1631 |
+
if ( get_option( 'subscribe_reloaded_use_cookies', 'yes' ) == 'yes' ) {
|
1632 |
setcookie( 'comment_author_email_' . COOKIEHASH, $subscribe_to_comments_clean_email, time() + 1209600, '/' );
|
1633 |
}
|
1634 |
}
|