Changeset 6855 for trunk/src/includes/forums/functions.php
- Timestamp:
- 08/22/2018 03:11:02 PM (7 years ago)
- File:
-
- 1 edited
-
trunk/src/includes/forums/functions.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/forums/functions.php
r6848 r6855 235 235 } 236 236 237 /** Forum B lacklist*******************************************************/238 239 if ( ! bbp_check_for_ blacklist( $anonymous_data, $forum_author, $forum_title, $forum_content) ) {240 bbp_add_error( 'bbp_forum_ blacklist', __( '<strong>ERROR</strong>: Your forum cannot be created at this time.', 'bbpress' ) );237 /** Forum Bad Words *******************************************************/ 238 239 if ( ! bbp_check_for_moderation( $anonymous_data, $forum_author, $forum_title, $forum_content, true ) ) { 240 bbp_add_error( 'bbp_forum_moderation', __( '<strong>ERROR</strong>: Your forum cannot be created at this time.', 'bbpress' ) ); 241 241 } 242 242 … … 474 474 } 475 475 476 /** Forum B lacklist*******************************************************/477 478 if ( ! bbp_check_for_ blacklist( $anonymous_data, bbp_get_forum_author_id( $forum_id ), $forum_title, $forum_content) ) {479 bbp_add_error( 'bbp_forum_ blacklist', __( '<strong>ERROR</strong>: Your forum cannot be edited at this time.', 'bbpress' ) );476 /** Forum Bad Words *******************************************************/ 477 478 if ( ! bbp_check_for_moderation( $anonymous_data, bbp_get_forum_author_id( $forum_id ), $forum_title, $forum_content, true ) ) { 479 bbp_add_error( 'bbp_forum_moderation', __( '<strong>ERROR</strong>: Your forum cannot be edited at this time.', 'bbpress' ) ); 480 480 } 481 481
Note: See TracChangeset
for help on using the changeset viewer.