Plugin Directory

Changeset 2115910


Ignore:
Timestamp:
07/02/2019 05:45:39 AM (7 years ago)
Author:
softmodeling
Message:

Release of version 1.1.1

Location:
serious-toxic-comments/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • serious-toxic-comments/trunk/README.txt

    r2115899 r2115910  
    4848== Changelog ==
    4949
     50= 1.1.1 =
     51* Bug fix: Avoids calling bbPress functions when bbPress is not present in the site
     52
    5053= 1.1 =
    5154* Added support for bbPress
     
    5760== Upgrade Notice ==
    5861
     62= 1.1.1 =
     63* Bug fix: checks for the existance of bbPress in the site before calling bbPres functions
     64
    5965= 1.1 =
    6066* Added bbPress support and configuration of the alert toxic message
  • serious-toxic-comments/trunk/public/class-serious-toxic-comments-public-ext.php

    r2115899 r2115910  
    2828    {
    2929        $this->comment_toxicity();
    30         $this->bbpress_toxicity();
     30        if ( class_exists( 'bbPress' ) ) {$this->bbpress_toxicity();}
    3131    }
    3232
  • serious-toxic-comments/trunk/serious-toxic-comments.php

    r2115899 r2115910  
    1717 * Plugin URI:        https://wordpress.org/plugins/serious-toxic-comments
    1818 * Description:       Flag and block toxic comments on your site
    19  * Version:           1.1
     19 * Version:           1.1.1
    2020 * Author:            Jordi Cabot
    2121 * Author URI:        https://seriouswp.com
Note: See TracChangeset for help on using the changeset viewer.