Plugin Directory

Changeset 3413005


Ignore:
Timestamp:
12/06/2025 02:32:01 PM (3 months ago)
Author:
awelzel
Message:

Update trunk from Codeberg

Location:
comment-reply-email-notification/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • comment-reply-email-notification/trunk/classes/CommentReplyEmailNotification.php

    r3329290 r3413005  
    44class CommentReplyEmailNotification
    55{
    6     const CREN_VERSION = '1.37.0';
     6    const CREN_VERSION = '1.38.0';
    77
    88    /**
     
    2020        add_filter('preprocess_comment', [$this, 'verifyCommentMetaData']);
    2121        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        }
    2325        add_action('comment_post', [$this, 'persistSubscriptionOptIn']);
    2426        add_action('init', [$this, 'init']);
     
    418420     * @return string
    419421     */
    420     function commentFieldsLoggedIn($submitField)
     422    function commentFieldsSubmit($submitField)
    421423    {
    422424        $checkbox = '';
  • comment-reply-email-notification/trunk/cren_plugin.php

    r3329290 r3413005  
    44Plugin URI: https://wordpress.org/plugins/comment-reply-email-notification/
    55Description: Sends an email notification to the comment author when someone replies to his comment.
    6 Version: 1.37.0
     6Version: 1.38.0
    77Author: Arno Welzel
    88Author URI: http://arnowelzel.de
  • comment-reply-email-notification/trunk/readme.txt

    r3329290 r3413005  
    33Tags: comment, email, reply, notification
    44Requires at least: 4.4.0
    5 Tested up to: 6.8
    6 Stable tag: 1.37.0
     5Tested up to: 6.9
     6Stable tag: 1.38.0
    77Donate link: https://paypal.me/ArnoWelzel
    88License: GPLv2
     
    7878== Changelog ==
    7979
     80= 1.38.0 =
     81
     82* Fix double subscribe checkboxes when logged in for WordPress 3.9.
     83
    8084= 1.37.0 =
    8185
Note: See TracChangeset for help on using the changeset viewer.