Plugin Directory

Changeset 3109759

Timestamp:
06/29/2024 05:24:39 PM (4 weeks ago)
Author:
johnjamesjacoby
Message:

bbPress: merge dev trunk with deploy trunk.

Includes fixes from 2.6.11.

Location:
bbpress/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • bbpress/trunk/includes/common/functions.php

    r3109477 r3109759  
    843843 * @param string $title The title of the content
    844844 * @param string $content The content being posted
    845  * @param mixed  $strict  False for moderation_keys. True for blacklist_keys.
     845 * @param mixed  $strict  False for moderation_keys. True for _keys.
    846846 *                        String for custom keys.
    847847 * @return bool True if test is passed, false if fail
     
    864864    }
    865865
    866     // Strict mode uses WordPress "blacklist" settings
     866    // Strict mode uses WordPress "" settings
    867867    if ( true === $strict ) {
    868868        $hook_name   = 'blacklist';
    869         $option_name = 'blacklist_keys';
     869        $option_name = '_keys';
    870870
    871871    // Non-strict uses WordPress "moderation" settings
  • bbpress/trunk/includes/forums/functions.php

    r3109477 r3109759  
    23102310    $post_types = array_filter( (array) $posts_query->get( 'post_type' ) );
    23112311
     2312
     2313
     2314
     2315
     2316
    23122317    // Forums
    23132318    if ( in_array( bbp_get_forum_post_type(), $post_types, true ) ) {
     
    23352340    }
    23362341
    2337     // Some other post type besides Forums, Topics, or Replies
     2342    //
    23382343    if ( ! array_diff( $post_types, bbp_get_post_types() ) ) {
    23392344
  • bbpress/trunk/readme.txt

    r3109755 r3109759  
    33Author:            The bbPress Contributors
    44Author URI:        https://bbpress.org
    5 Plugin URI:        https://bbpress.org
    65License URI:       https://www.gnu.org/licenses/gpl-2.0.html
    76License:           GNU General Public License v2 or later
Note: See TracChangeset for help on using the changeset viewer.