Changeset 13558
- Timestamp:
- 08/24/2023 08:06:54 PM (23 months ago)
- Location:
- branches/11.0
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/11.0/bp-loader.php
r13478 r13558 22 22 * Requires PHP: 5.6 23 23 * Requires at least: 5.7 24 * Version: 11. 2.024 * Version: 11.3.1 25 25 */ 26 26 -
branches/11.0/npm-shrinkwrap.json
r13478 r13558 1 1 { 2 2 "name": "buddypress", 3 "version": "11. 2.0",3 "version": "11.3.1", 4 4 "lockfileVersion": 1, 5 5 "requires": true, -
branches/11.0/package.json
r13478 r13558 79 79 "url": "https://buddypress.svn.wordpress.org/trunk/" 80 80 }, 81 "version": "11. 2.0",81 "version": "11.3.1", 82 82 "browserslist": [ 83 83 "extends @wordpress/browserslist-config" -
branches/11.0/src/bp-loader.php
r13478 r13558 22 22 * Requires PHP: 5.6 23 23 * Requires at least: 5.7 24 * Version: 11. 2.024 * Version: 11.3.1 25 25 */ 26 26 -
branches/11.0/src/bp-xprofile/classes/class-bp-xprofile-query.php
r12534 r13558 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/11.0/src/class-buddypress.php
r13478 r13558 350 350 /** Versions */ 351 351 352 $this->version = '11. 2.0';352 $this->version = '11.3.1'; 353 353 $this->db_version = 13271; 354 354 -
branches/11.0/src/readme.txt
r13543 r13558 7 7 Requires at least: 5.7 8 8 Tested up to: 6.3 9 Stable tag: 11. 2.09 Stable tag: 11.3.1 10 10 11 11 BuddyPress helps site builders & developers add community features to their websites, with user profiles, activity streams, and more! … … 126 126 == Upgrade Notice == 127 127 128 = 11.3.1 = 129 See: https://codex.buddypress.org/releases/version-11-3-1/ 130 128 131 = 11.2.0 = 129 132 See: https://codex.buddypress.org/releases/version-11-2-0/ … … 170 173 == Changelog == 171 174 175 = 11.3.1 = 176 See: https://codex.buddypress.org/releases/version-11-3-1/ 177 172 178 = 11.2.0 = 173 179 See: https://codex.buddypress.org/releases/version-11-2-0/
Note: See TracChangeset
for help on using the changeset viewer.