diff --git src/bp-core/classes/class-bp-admin.php src/bp-core/classes/class-bp-admin.php
index 1f58d103c..d7b036b97 100644
|
|
class BP_Admin { |
183 | 183 | // Add a link to BuddyPress Hello in the admin bar. |
184 | 184 | add_action( 'admin_bar_menu', array( $this, 'admin_bar_about_link' ), 100 ); |
185 | 185 | |
186 | | // Add a description of new BuddyPress tools in the available tools page. |
187 | | add_action( 'tool_box', 'bp_core_admin_available_tools_intro' ); |
188 | | add_action( 'bp_network_tool_box', 'bp_core_admin_available_tools_intro' ); |
| 186 | // Add a description of BuddyPress tools in the available tools page. |
| 187 | if ( bp_current_user_can( 'bp_moderate' ) ) { |
| 188 | add_action( 'tool_box', 'bp_core_admin_available_tools_intro' ); |
| 189 | add_action( 'bp_network_tool_box', 'bp_core_admin_available_tools_intro' ); |
| 190 | } |
189 | 191 | |
190 | 192 | // On non-multisite, catch. |
191 | 193 | add_action( 'load-users.php', 'bp_core_admin_user_manage_spammers' ); |