Changeset 3413005
- Timestamp:
- 12/06/2025 02:32:01 PM (3 months ago)
- Location:
- comment-reply-email-notification/trunk
- Files:
-
- 3 edited
-
classes/CommentReplyEmailNotification.php (modified) (3 diffs)
-
cren_plugin.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
comment-reply-email-notification/trunk/classes/CommentReplyEmailNotification.php
r3329290 r3413005 4 4 class CommentReplyEmailNotification 5 5 { 6 const CREN_VERSION = '1.3 7.0';6 const CREN_VERSION = '1.38.0'; 7 7 8 8 /** … … 20 20 add_filter('preprocess_comment', [$this, 'verifyCommentMetaData']); 21 21 add_filter('comment_form_default_fields', [$this, 'commentFields']); 22 add_filter('comment_form_submit_field', [$this, 'commentFieldsLoggedIn']); 22 if (wp_get_wp_version() < '6.9') { 23 add_filter('comment_form_submit_field', [$this, 'commentFieldsSubmit']); 24 } 23 25 add_action('comment_post', [$this, 'persistSubscriptionOptIn']); 24 26 add_action('init', [$this, 'init']); … … 418 420 * @return string 419 421 */ 420 function commentFields LoggedIn($submitField)422 function commentFieldsSubmit($submitField) 421 423 { 422 424 $checkbox = ''; -
comment-reply-email-notification/trunk/cren_plugin.php
r3329290 r3413005 4 4 Plugin URI: https://wordpress.org/plugins/comment-reply-email-notification/ 5 5 Description: Sends an email notification to the comment author when someone replies to his comment. 6 Version: 1.3 7.06 Version: 1.38.0 7 7 Author: Arno Welzel 8 8 Author URI: http://arnowelzel.de -
comment-reply-email-notification/trunk/readme.txt
r3329290 r3413005 3 3 Tags: comment, email, reply, notification 4 4 Requires at least: 4.4.0 5 Tested up to: 6. 86 Stable tag: 1.3 7.05 Tested up to: 6.9 6 Stable tag: 1.38.0 7 7 Donate link: https://paypal.me/ArnoWelzel 8 8 License: GPLv2 … … 78 78 == Changelog == 79 79 80 = 1.38.0 = 81 82 * Fix double subscribe checkboxes when logged in for WordPress 3.9. 83 80 84 = 1.37.0 = 81 85
Note: See TracChangeset
for help on using the changeset viewer.