Changeset 13560
- Timestamp:
- 08/24/2023 08:23:12 PM (21 months ago)
- Location:
- branches/5.0
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.0/bp-loader.php
r13055 r13560 16 16 * Author: The BuddyPress Community 17 17 * Author URI: https://buddypress.org/ 18 * Version: 5.2. 118 * Version: 5.2.2 19 19 * Text Domain: buddypress 20 20 * Domain Path: /bp-languages/ -
branches/5.0/npm-shrinkwrap.json
r13055 r13560 1 1 { 2 2 "name": "buddypress", 3 "version": "5.2. 1",3 "version": "5.2.2", 4 4 "lockfileVersion": 2, 5 5 "requires": true, -
branches/5.0/package.json
r13055 r13560 53 53 "url": "https://buddypress.svn.wordpress.org/trunk/" 54 54 }, 55 "version": "5.2. 1",55 "version": "5.2.2", 56 56 "dependencies": {}, 57 57 "browserslist": [ -
branches/5.0/src/bp-loader.php
r13055 r13560 16 16 * Author: The BuddyPress Community 17 17 * Author URI: https://buddypress.org/ 18 * Version: 5.2. 118 * Version: 5.2.2 19 19 * Text Domain: buddypress 20 20 * Domain Path: /bp-languages/ -
branches/5.0/src/bp-xprofile/classes/class-bp-xprofile-query.php
r11018 r13560 523 523 $sibling_compare = strtoupper( $sibling['compare'] ); 524 524 if ( in_array( $clause_compare, $compatible_compares ) && in_array( $sibling_compare, $compatible_compares ) ) { 525 $alias = $sibling['alias'];525 $alias = preg_replace( '/\W/', '_', $sibling['alias'] ); 526 526 break; 527 527 } -
branches/5.0/src/class-buddypress.php
r13055 r13560 304 304 /** Versions **********************************************************/ 305 305 306 $this->version = '5.2. 1';306 $this->version = '5.2.2'; 307 307 $this->db_version = 12385; 308 308 -
branches/5.0/src/readme.txt
r13055 r13560 5 5 Tested up to: 5.4 6 6 Requires PHP: 5.3 7 Stable tag: 5.2. 17 Stable tag: 5.2.2 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.