Plugin Directory

Changeset 3383625


Ignore:
Timestamp:
10/23/2025 08:01:42 PM (5 months ago)
Author:
useStrict
Message:

Commit 2.19.5

Location:
bbpress-notify-nospam/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • bbpress-notify-nospam/trunk/bbpress-notify-nospam.php

    r3366040 r3383625  
    33* Plugin Name: bbPress Notify (No-Spam)
    44* 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.4
     5* Version:     2.19.5
    66* Author:      <a href="http://usestrict.net" target="_new">Vinny Alves (UseStrict Consulting)</a>
    77* License:     GNU General Public License, v2 ( or newer )
     
    1818class bbPress_Notify_noSpam
    1919{
    20     const VERSION = '2.19.4';
     20    const VERSION = '2.19.5';
    2121   
    2222    /**
     
    7878
    7979        // 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 );
    8282    }
    8383   
     
    182182        {
    183183            deactivate_plugins( plugin_basename( __FILE__ ) );
    184             wp_die( __( 'Sorry, you need to activate bbPress first.', 'bbpnns' ) );
     184            wp_die( __( 'Sorry, you need to activate bbPress first.', 'bbpress-notify-nospam' ) );
    185185        }
    186186    }
  • bbpress-notify-nospam/trunk/readme.txt

    r3366040 r3383625  
    66Tags: bbpress, buddyboss, email notification, forum notifications, no spam
    77Requires at least: 3.1
    8 Tested up to: 6.8.2
     8Tested up to: 6.8.3
    99Text Domain: bbpress-notify-nospam
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
    12 Stable Tag: 2.19.4
     12Stable Tag: 2.19.5
    1313Requires PHP: 5.6
    1414Powerful, customizable email notifications for bbPress and BuddyBoss forums — without the spam.
     
    8787
    8888== Changelog ==
     89= 2.19.5=
     90* Fix _load_textdomain_just_in_time warnings.
     91* Fix wrong textdomain.
     92* Update tested up to.
     93
    8994= 2.19.4 =
    9095* Fix deprecation notice.
Note: See TracChangeset for help on using the changeset viewer.