Changeset 13564
- Timestamp:
- 08/24/2023 08:34:43 PM (13 months ago)
- Location:
- branches/7.0
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/7.0/bp-loader.php
r13074 r13564 16 16 * Author: The BuddyPress Community 17 17 * Author URI: https://buddypress.org/ 18 * Version: 7.3. 218 * Version: 7.3.3 19 19 * Text Domain: buddypress 20 20 * Domain Path: /bp-languages/ -
branches/7.0/npm-shrinkwrap.json
r13074 r13564 1 1 { 2 2 "name": "buddypress", 3 "version": "7.3. 2",3 "version": "7.3.3", 4 4 "lockfileVersion": 2, 5 5 "requires": true, -
branches/7.0/package.json
r13074 r13564 70 70 "url": "https://buddypress.svn.wordpress.org/trunk/" 71 71 }, 72 "version": "7.3. 2",72 "version": "7.3.3", 73 73 "browserslist": [ 74 74 "extends @wordpress/browserslist-config" -
branches/7.0/src/bp-loader.php
r13074 r13564 16 16 * Author: The BuddyPress Community 17 17 * Author URI: https://buddypress.org/ 18 * Version: 7.3. 218 * Version: 7.3.3 19 19 * Text Domain: buddypress 20 20 * Domain Path: /bp-languages/ -
branches/7.0/src/bp-xprofile/classes/class-bp-xprofile-query.php
r12534 r13564 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/7.0/src/class-buddypress.php
r13074 r13564 304 304 /** Versions **********************************************************/ 305 305 306 $this->version = '7.3. 2';306 $this->version = '7.3.3'; 307 307 $this->db_version = 12385; 308 308 -
branches/7.0/src/readme.txt
r13074 r13564 7 7 Requires PHP: 5.6 8 8 Tested up to: 5.7 9 Stable tag: 7.3. 29 Stable tag: 7.3.3 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.