diff --git src/bp-core/admin/bp-core-admin-schema.php src/bp-core/admin/bp-core-admin-schema.php
index bb15a40b5..d7cab5bbe 100644
|
|
|
function bp_core_install( $active_components = false ) { |
| 37 | 37 | // Install the signups table. |
| 38 | 38 | bp_core_maybe_install_signups(); |
| 39 | 39 | |
| | 40 | // Install the invitations table. |
| | 41 | bp_core_install_invitations(); |
| | 42 | |
| 40 | 43 | // Notifications. |
| 41 | 44 | if ( !empty( $active_components['notifications'] ) ) { |
| 42 | 45 | bp_core_install_notifications(); |
diff --git src/bp-core/bp-core-update.php src/bp-core/bp-core-update.php
index db6d0289e..eda45ead0 100644
|
|
|
function bp_version_updater() { |
| 211 | 211 | bp_update_option( 'bp-active-components', $default_components ); |
| 212 | 212 | bp_core_add_page_mappings( $default_components, 'delete' ); |
| 213 | 213 | bp_core_install_emails(); |
| 214 | | bp_core_install_invitations(); |
| 215 | 214 | |
| 216 | 215 | // Upgrades. |
| 217 | 216 | } else { |