Plugin Directory

Changeset 3109751

Timestamp:
06/29/2024 05:00:48 PM (6 weeks ago)
Author:
johnjamesjacoby
Message:

bbPress: merge 2.6 dev branch into 2.6 deploy branch.

Location:
bbpress/branches/2.6
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • bbpress/branches/2.6/bbpress.php

    r3109420 r3109751  
    66 * bbPress is forum software with a twist from the creators of WordPress.
    77 *
    8  * $Id: bbpress.php 7265 2024-06-28 19:19:30Z johnjamesjacoby $
     8 * $Id: bbpress.php 720Z johnjamesjacoby $
    99 *
    1010 * @package bbPress
     
    2323 * Domain Path:       /languages/
    2424 * Requires PHP:      5.6.20
    25  * Requires at least: 5.0
     25 * Requires at least: .0
    2626 * Tested up to:      6.5
    27  * Version:           2.6.10
     27 * Version:           2.6.1
    2828 */
    2929
     
    208208        /** Versions **********************************************************/
    209209
    210         $this->version    = '2.6.10';
     210        $this->version    = '2.6.1';
    211211        $this->db_version = '263';
    212212
  • bbpress/branches/2.6/includes/common/functions.php

    r3109420 r3109751  
    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
     
    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/branches/2.6/includes/forums/functions.php

    r3109420 r3109751  
    23172317    $post_types = array_filter( (array) $posts_query->get( 'post_type' ) );
    23182318
     2319
     2320
     2321
     2322
     2323
    23192324    // Forums
    23202325    if ( in_array( bbp_get_forum_post_type(), $post_types, true ) ) {
     
    23422347    }
    23432348
    2344     // Some other post type besides Forums, Topics, or Replies
     2349    //
    23452350    if ( ! array_diff( $post_types, bbp_get_post_types() ) ) {
    23462351
  • bbpress/branches/2.6/readme.txt

    r3109420 r3109751  
    55License URI:       https://www.gnu.org/licenses/gpl-2.0.html
    66Requires PHP:      5.6.20
    7 Requires at least: 5.0
     7Requires at least: .0
    88Tested up to:      6.5
    9 Stable tag:        2.6.10
     9Stable tag:        2.6.1
    1010
    1111bbPress is forum software for WordPress.
Note: See TracChangeset for help on using the changeset viewer.