Changeset 3383625
- Timestamp:
- 10/23/2025 08:01:42 PM (5 months ago)
- Location:
- bbpress-notify-nospam/trunk
- Files:
-
- 2 edited
-
bbpress-notify-nospam.php (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bbpress-notify-nospam/trunk/bbpress-notify-nospam.php
r3366040 r3383625 3 3 * Plugin Name: bbPress Notify (No-Spam) 4 4 * Description: Sends email notifications upon topic/reply creation, as long as it's not flagged as spam. If you like this plugin, <a href="https://wordpress.org/support/view/plugin-reviews/bbpress-notify-nospam#postform" target="_new">help share the trust and rate it!</a> 5 * Version: 2.19. 45 * Version: 2.19.5 6 6 * Author: <a href="http://usestrict.net" target="_new">Vinny Alves (UseStrict Consulting)</a> 7 7 * License: GNU General Public License, v2 ( or newer ) … … 18 18 class bbPress_Notify_noSpam 19 19 { 20 const VERSION = '2.19. 4';20 const VERSION = '2.19.5'; 21 21 22 22 /** … … 78 78 79 79 // Load this first so it can play nicely with Moderation plugins. 80 add_action( 'init', array( $this, ' init'), 0 );81 add_action( 'init', [$this, 'load_textdomain']);80 add_action( 'init', array( $this, 'load_textdomain'), 0 ); 81 add_action( 'init', array( $this, 'init' ), 1 ); 82 82 } 83 83 … … 182 182 { 183 183 deactivate_plugins( plugin_basename( __FILE__ ) ); 184 wp_die( __( 'Sorry, you need to activate bbPress first.', 'bbp nns' ) );184 wp_die( __( 'Sorry, you need to activate bbPress first.', 'bbpress-notify-nospam' ) ); 185 185 } 186 186 } -
bbpress-notify-nospam/trunk/readme.txt
r3366040 r3383625 6 6 Tags: bbpress, buddyboss, email notification, forum notifications, no spam 7 7 Requires at least: 3.1 8 Tested up to: 6.8. 28 Tested up to: 6.8.3 9 9 Text Domain: bbpress-notify-nospam 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html 12 Stable Tag: 2.19. 412 Stable Tag: 2.19.5 13 13 Requires PHP: 5.6 14 14 Powerful, customizable email notifications for bbPress and BuddyBoss forums — without the spam. … … 87 87 88 88 == Changelog == 89 = 2.19.5= 90 * Fix _load_textdomain_just_in_time warnings. 91 * Fix wrong textdomain. 92 * Update tested up to. 93 89 94 = 2.19.4 = 90 95 * Fix deprecation notice.
Note: See TracChangeset
for help on using the changeset viewer.