diff --git src/bp-core/admin/bp-core-admin-tools.php src/bp-core/admin/bp-core-admin-tools.php
index 5702fd29a..788e84ab8 100644
|
|
function bp_core_admin_debug_information( $debug_info = array() ) { |
774 | 774 | return $debug_info; |
775 | 775 | } |
776 | 776 | |
777 | | $active_components = wp_list_pluck( bp_core_get_active_components( array(), 'objects' ), 'name', 'id' ); |
| 777 | $all_components = bp_core_get_components(); |
| 778 | $active_components = array_merge( buddypress()->active_components, array( 'core' => '1' ) ); |
| 779 | $active_components = wp_list_pluck( array_intersect_key( $all_components, $active_components ), 'title' ); |
778 | 780 | $bp_settings = array(); |
779 | 781 | $skipped_settings = array( '_bp_theme_package_id', '_bp_community_visibility' ); |
780 | 782 | $bp_url_parsers = array( |