Changeset 13570
- Timestamp:
- 08/24/2023 08:52:45 PM (22 months ago)
- Location:
- branches/10.0
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/10.0/bp-loader.php
r13352 r13570 16 16 * Author: The BuddyPress Community 17 17 * Author URI: https://buddypress.org/ 18 * Version: 10.6. 018 * Version: 10.6.1 19 19 * Text Domain: buddypress 20 20 * Domain Path: /bp-languages/ -
branches/10.0/npm-shrinkwrap.json
r13352 r13570 1 1 { 2 2 "name": "buddypress", 3 "version": "10.6. 0",3 "version": "10.6.1", 4 4 "lockfileVersion": 1, 5 5 "requires": true, -
branches/10.0/package.json
r13352 r13570 79 79 "url": "https://buddypress.svn.wordpress.org/trunk/" 80 80 }, 81 "version": "10.6. 0",81 "version": "10.6.1", 82 82 "browserslist": [ 83 83 "extends @wordpress/browserslist-config" -
branches/10.0/src/bp-loader.php
r13352 r13570 16 16 * Author: The BuddyPress Community 17 17 * Author URI: https://buddypress.org/ 18 * Version: 10.6. 018 * Version: 10.6.1 19 19 * Text Domain: buddypress 20 20 * Domain Path: /bp-languages/ -
branches/10.0/src/bp-xprofile/classes/class-bp-xprofile-query.php
r12534 r13570 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/10.0/src/class-buddypress.php
r13352 r13570 350 350 /** Versions */ 351 351 352 $this->version = '10.6. 0';352 $this->version = '10.6.1'; 353 353 $this->db_version = 13165; 354 354 -
branches/10.0/src/readme.txt
r13352 r13570 7 7 Requires at least: 5.4 8 8 Tested up to: 6.1 9 Stable tag: 10.6. 09 Stable tag: 10.6.1 10 10 11 11 BuddyPress 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.