Skip to:
Content

BuddyPress.org

Changeset 13566


Ignore:
Timestamp:
08/24/2023 08:39:01 PM (13 months ago)
Author:
dcavins
Message:

8.0.3 version bumps (Branch 8.0)

Location:
branches/8.0
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • branches/8.0/bp-loader.php

    r13077 r13566  
    1616 * Author:      The BuddyPress Community
    1717 * Author URI:  https://buddypress.org/
    18  * Version:     8.0.2
     18 * Version:     8.0.3
    1919 * Text Domain: buddypress
    2020 * Domain Path: /bp-languages/
  • branches/8.0/npm-shrinkwrap.json

    r13077 r13566  
    11{
    22    "name": "buddypress",
    3     "version": "8.0.2",
     3    "version": "8.0.3",
    44    "lockfileVersion": 2,
    55    "requires": true,
  • branches/8.0/package.json

    r13077 r13566  
    7070        "url": "https://buddypress.svn.wordpress.org/trunk/"
    7171    },
    72     "version": "8.0.2",
     72    "version": "8.0.3",
    7373    "browserslist": [
    7474        "extends @wordpress/browserslist-config"
  • branches/8.0/src/bp-loader.php

    r13077 r13566  
    1616 * Author:      The BuddyPress Community
    1717 * Author URI:  https://buddypress.org/
    18  * Version:     8.0.2
     18 * Version:     8.0.3
    1919 * Text Domain: buddypress
    2020 * Domain Path: /bp-languages/
  • branches/8.0/src/bp-xprofile/classes/class-bp-xprofile-query.php

    r12534 r13566  
    523523            $sibling_compare = strtoupper( $sibling['compare'] );
    524524            if ( in_array( $clause_compare, $compatible_compares ) && in_array( $sibling_compare, $compatible_compares ) ) {
    525                 $alias = $sibling['alias'];
     525                $alias = preg_replace( '/\W/', '_', $sibling['alias'] );
    526526                break;
    527527            }
  • branches/8.0/src/class-buddypress.php

    r13077 r13566  
    304304        /** Versions **********************************************************/
    305305
    306         $this->version    = '8.0.2';
     306        $this->version    = '8.0.3';
    307307        $this->db_version = 12850;
    308308
  • branches/8.0/src/readme.txt

    r13077 r13566  
    77Requires PHP: 5.6
    88Tested up to: 5.7
    9 Stable tag: 8.0.2
     9Stable tag: 8.0.3
    1010
    1111BuddyPress helps site builders & developers add community features to their websites, with user profiles, activity streams, and more!
Note: See TracChangeset for help on using the changeset viewer.