Skip to:
Content

BuddyPress.org

Changeset 13560


Ignore:
Timestamp:
08/24/2023 08:23:12 PM (21 months ago)
Author:
dcavins
Message:

5.2.2 version bumps (Branch 5.0)

Location:
branches/5.0
Files:
7 edited

Legend:

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

    r13055 r13560  
    1616 * Author:      The BuddyPress Community
    1717 * Author URI:  https://buddypress.org/
    18  * Version:     5.2.1
     18 * Version:     5.2.2
    1919 * Text Domain: buddypress
    2020 * Domain Path: /bp-languages/
  • branches/5.0/npm-shrinkwrap.json

    r13055 r13560  
    11{
    22    "name": "buddypress",
    3     "version": "5.2.1",
     3    "version": "5.2.2",
    44    "lockfileVersion": 2,
    55    "requires": true,
  • branches/5.0/package.json

    r13055 r13560  
    5353        "url": "https://buddypress.svn.wordpress.org/trunk/"
    5454    },
    55     "version": "5.2.1",
     55    "version": "5.2.2",
    5656    "dependencies": {},
    5757    "browserslist": [
  • branches/5.0/src/bp-loader.php

    r13055 r13560  
    1616 * Author:      The BuddyPress Community
    1717 * Author URI:  https://buddypress.org/
    18  * Version:     5.2.1
     18 * Version:     5.2.2
    1919 * Text Domain: buddypress
    2020 * Domain Path: /bp-languages/
  • branches/5.0/src/bp-xprofile/classes/class-bp-xprofile-query.php

    r11018 r13560  
    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/5.0/src/class-buddypress.php

    r13055 r13560  
    304304        /** Versions **********************************************************/
    305305
    306         $this->version    = '5.2.1';
     306        $this->version    = '5.2.2';
    307307        $this->db_version = 12385;
    308308
  • branches/5.0/src/readme.txt

    r13055 r13560  
    55Tested up to: 5.4
    66Requires PHP: 5.3
    7 Stable tag: 5.2.1
     7Stable tag: 5.2.2
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.