Changeset 10941 for trunk/src/bp-core/bp-core-update.php
- Timestamp:
- 07/10/2016 09:46:27 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/bp-core-update.php
r10902 r10941 264 264 bp_update_to_2_5(); 265 265 } 266 267 // Version 2.7.0. 268 if ( $raw_db_version < 10940 ) { 269 bp_update_to_2_7(); 270 } 266 271 } 267 272 … … 498 503 function bp_update_to_2_5() { 499 504 bp_core_install_emails(); 505 } 506 507 /** 508 * 2.7.0 update routine. 509 * 510 * - Add email unsubscribe salt. 511 * 512 * @since 2.7.0 513 */ 514 function bp_update_to_2_7() { 515 bp_add_option( 'bp-emails-unsubscribe-salt', base64_encode( wp_generate_password( 64, true, true ) ) ); 500 516 } 501 517
Note: See TracChangeset
for help on using the changeset viewer.