Changeset 2115910
- Timestamp:
- 07/02/2019 05:45:39 AM (7 years ago)
- Location:
- serious-toxic-comments/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (2 diffs)
-
public/class-serious-toxic-comments-public-ext.php (modified) (1 diff)
-
serious-toxic-comments.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
serious-toxic-comments/trunk/README.txt
r2115899 r2115910 48 48 == Changelog == 49 49 50 = 1.1.1 = 51 * Bug fix: Avoids calling bbPress functions when bbPress is not present in the site 52 50 53 = 1.1 = 51 54 * Added support for bbPress … … 57 60 == Upgrade Notice == 58 61 62 = 1.1.1 = 63 * Bug fix: checks for the existance of bbPress in the site before calling bbPres functions 64 59 65 = 1.1 = 60 66 * Added bbPress support and configuration of the alert toxic message -
serious-toxic-comments/trunk/public/class-serious-toxic-comments-public-ext.php
r2115899 r2115910 28 28 { 29 29 $this->comment_toxicity(); 30 $this->bbpress_toxicity();30 if ( class_exists( 'bbPress' ) ) {$this->bbpress_toxicity();} 31 31 } 32 32 -
serious-toxic-comments/trunk/serious-toxic-comments.php
r2115899 r2115910 17 17 * Plugin URI: https://wordpress.org/plugins/serious-toxic-comments 18 18 * Description: Flag and block toxic comments on your site 19 * Version: 1.1 19 * Version: 1.1.1 20 20 * Author: Jordi Cabot 21 21 * Author URI: https://seriouswp.com
Note: See TracChangeset
for help on using the changeset viewer.