Changeset 9615
- Timestamp:
- 03/11/2015 05:14:47 PM (11 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
-
bp-core/bp-core-functions.php (modified) (1 diff)
-
bp-core/bp-core-update.php (modified) (3 diffs)
-
bp-loader.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/bp-core-functions.php
r9608 r9615 72 72 */ 73 73 function bp_get_db_version_raw() { 74 $bp = buddypress();74 $bp = buddypress(); 75 75 return !empty( $bp->db_version_raw ) ? $bp->db_version_raw : 0; 76 76 } -
trunk/src/bp-core/bp-core-update.php
r9572 r9615 249 249 250 250 // 2.3.0 251 if ( $raw_db_version < 9 572) {251 if ( $raw_db_version < 9615 ) { 252 252 bp_update_to_2_3(); 253 253 } … … 410 410 */ 411 411 function bp_update_to_2_2() { 412 413 // Also handled by `bp_core_install()` 412 414 if ( bp_is_active( 'messages' ) ) { 413 415 bp_core_install_private_messaging(); … … 431 433 */ 432 434 function bp_update_to_2_3() { 435 436 // Also handled by `bp_core_install()` 433 437 if ( bp_is_active( 'notifications' ) ) { 434 438 bp_core_install_notifications(); -
trunk/src/bp-loader.php
r9572 r9615 304 304 305 305 $this->version = '2.3-alpha'; 306 $this->db_version = 9 572;306 $this->db_version = 9615; 307 307 308 308 /** Loading ***********************************************************/
Note: See TracChangeset
for help on using the changeset viewer.