Changeset 3198131
- Timestamp:
- 11/27/2024 12:30:07 PM (16 months ago)
- Location:
- bbp-anonymous-subscriptions
- Files:
-
- 15 added
- 2 edited
-
tags/1.3.9 (added)
-
tags/1.3.9/bbp-anonymous-subscriptions.php (added)
-
tags/1.3.9/lang (added)
-
tags/1.3.9/lang/bbp-anonymous-subscriptions-de_DE.mo (added)
-
tags/1.3.9/lang/bbp-anonymous-subscriptions-de_DE.po (added)
-
tags/1.3.9/lang/bbp-anonymous-subscriptions-he_IL.mo (added)
-
tags/1.3.9/lang/bbp-anonymous-subscriptions-he_IL.po (added)
-
tags/1.3.9/lang/bbp-anonymous-subscriptions-it_IT.mo (added)
-
tags/1.3.9/lang/bbp-anonymous-subscriptions-it_IT.po (added)
-
tags/1.3.9/lang/bbp-anonymous-subscriptions-nb_NO.mo (added)
-
tags/1.3.9/lang/bbp-anonymous-subscriptions-nb_NO.po (added)
-
tags/1.3.9/lang/bbp-anonymous-subscriptions-sr_RS.mo (added)
-
tags/1.3.9/lang/bbp-anonymous-subscriptions-sr_RS.po (added)
-
tags/1.3.9/lang/bbp-anonymous-subscriptions.pot (added)
-
tags/1.3.9/readme.txt (added)
-
trunk/bbp-anonymous-subscriptions.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bbp-anonymous-subscriptions/trunk/bbp-anonymous-subscriptions.php
r3022040 r3198131 4 4 Plugin URL: http://www.thecrowned.org/bbpress-anonymous-subscriptions 5 5 Description: Allows anonymous users to subscribe to bbPress topics and receive emails notifications when new replies are posted. 6 Version: 1.3. 86 Version: 1.3.9 7 7 Author: Stefano Ottolenghi 8 8 Author URI: http://www.thecrowned.org … … 283 283 ); 284 284 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 ); 286 286 if ( empty( $message ) ) { 287 287 return $user_ids; 288 288 } 289 289 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 ); 291 291 if ( empty( $subject ) ) { 292 292 return $user_ids; -
bbp-anonymous-subscriptions/trunk/readme.txt
r3113690 r3198131 7 7 Requires at least: 3.2 8 8 Tested up to: 6.6 9 Stable Tag: 1.3. 89 Stable Tag: 1.3.9 10 10 11 11 A simple plugin to allow anonymous bbPress users to subscribe to topics and get email notifications when a new reply is posted. … … 26 26 27 27 == 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 28 31 = 1.3.8 = 29 32 * Fix: properly handling emails with special characters in unsubscribe links.
Note: See TracChangeset
for help on using the changeset viewer.