Changeset 8174 for trunk/bp-core/bp-core-admin.php
- Timestamp:
- 03/27/2014 06:02:00 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-core/bp-core-admin.php
r8140 r8174 162 162 add_action( 'bp_network_tool_box', 'bp_core_admin_available_tools_intro' ); 163 163 164 // On non-multisite, catch 165 add_action( 'load-users.php', 'bp_core_admin_user_manage_spammers' ); 166 164 167 /** Filters ***********************************************************/ 165 168 … … 167 170 add_filter( 'plugin_action_links', array( $this, 'modify_plugin_action_links' ), 10, 2 ); 168 171 add_filter( 'network_admin_plugin_action_links', array( $this, 'modify_plugin_action_links' ), 10, 2 ); 172 173 // Add "Mark as Spam" row actions on users.php 174 add_filter( 'ms_user_row_actions', 'bp_core_admin_user_row_actions', 10, 2 ); 175 add_filter( 'user_row_actions', 'bp_core_admin_user_row_actions', 10, 2 ); 169 176 } 170 177
Note: See TracChangeset
for help on using the changeset viewer.