Plugin Directory

Changeset 3198131


Ignore:
Timestamp:
11/27/2024 12:30:07 PM (16 months ago)
Author:
Ste_95
Message:

Version 1.3.9

Location:
bbp-anonymous-subscriptions
Files:
15 added
2 edited

Legend:

Unmodified
Added
Removed
  • bbp-anonymous-subscriptions/trunk/bbp-anonymous-subscriptions.php

    r3022040 r3198131  
    44Plugin URL: http://www.thecrowned.org/bbpress-anonymous-subscriptions
    55Description: Allows anonymous users to subscribe to bbPress topics and receive emails notifications when new replies are posted.
    6 Version: 1.3.8
     6Version: 1.3.9
    77Author: Stefano Ottolenghi
    88Author URI: http://www.thecrowned.org
     
    283283            );
    284284
    285             $message = apply_filters( 'bbp_subscription_mail_message', $message, $reply_id, $topic_id );
     285            $message = apply_filters( 'bbp_subscription_mail_message', $message, $reply_id, $topic_id, $user_email );
    286286            if ( empty( $message ) ) {
    287287                return $user_ids;
    288288            }
    289289
    290             $subject = apply_filters( 'bbp_subscription_mail_title', '[' . $blog_name . '] ' . $topic_title, $reply_id, $topic_id );
     290            $subject = apply_filters( 'bbp_subscription_mail_title', '[' . $blog_name . '] ' . $topic_title, $reply_id, $topic_id, $user_email );
    291291            if ( empty( $subject ) ) {
    292292                return $user_ids;
  • bbp-anonymous-subscriptions/trunk/readme.txt

    r3113690 r3198131  
    77Requires at least: 3.2
    88Tested up to: 6.6
    9 Stable Tag: 1.3.8
     9Stable Tag: 1.3.9
    1010
    1111A simple plugin to allow anonymous bbPress users to subscribe to topics and get email notifications when a new reply is posted.
     
    2626
    2727== Changelog ==
     28= 1.3.9 =
     29* Tweak: Add `$user_email` to filters `bbp_subscription_mail_message` and `bbp_subscription_mail_title` (as last argument).
     30
    2831= 1.3.8 =
    2932* Fix: properly handling emails with special characters in unsubscribe links.
Note: See TracChangeset for help on using the changeset viewer.