diff --git bp-core/bp-core-update.php bp-core/bp-core-update.php
index 6c59538..d1ea7ce 100644
|
|
function bp_update_to_1_9_2() { |
342 | 342 | function bp_update_to_2_0() { |
343 | 343 | global $wpdb; |
344 | 344 | |
345 | | /** Install activity tables for 'last_activity' **********************/ |
| 345 | /** Install activity tables for 'last_activity' ***************************/ |
| 346 | |
346 | 347 | bp_core_install_activity_streams(); |
347 | 348 | |
348 | | /** Migrate 'last_activity' data *************************************/ |
| 349 | /** Migrate 'last_activity' data ******************************************/ |
349 | 350 | |
350 | 351 | bp_last_activity_migrate(); |
351 | 352 | |
352 | | /** Migrate signups data *********************************************/ |
| 353 | /** Migrate signups data **************************************************/ |
353 | 354 | |
354 | 355 | if ( bp_get_signup_allowed() && ! is_multisite() ) { |
355 | 356 | |
… |
… |
function bp_update_to_2_0() { |
379 | 380 | $user_login = preg_replace( '/\s+/', '', sanitize_user( $signup->user_login, true ) ); |
380 | 381 | $user_email = sanitize_email( $signup->user_email ); |
381 | 382 | |
382 | | $args = array( |
| 383 | BP_Signup::add( array( |
383 | 384 | 'user_login' => $user_login, |
384 | 385 | 'user_email' => $user_email, |
385 | 386 | 'registered' => $signup->user_registered, |
386 | 387 | 'activation_key' => $signup->activation_key, |
387 | 388 | 'meta' => $meta |
388 | | ); |
389 | | |
390 | | BP_Signup::add( $args ); |
| 389 | ) ); |
391 | 390 | |
392 | 391 | // Deleting these options will remove signups from users count |
393 | 392 | delete_user_option( $signup->ID, 'capabilities' ); |
394 | | delete_user_option( $signup->ID, 'user_level' ); |
| 393 | delete_user_option( $signup->ID, 'user_level' ); |
395 | 394 | } |
396 | 395 | } |
397 | 396 | |
398 | | /** Add BP options to the options table ******************************/ |
| 397 | /** Add BP options to the options table ***********************************/ |
| 398 | |
399 | 399 | bp_add_options(); |
400 | 400 | } |
401 | 401 | |
diff --git bp-members/bp-members-admin.php bp-members/bp-members-admin.php
index 74b80d2..170bd99 100644
|
|
class BP_Members_Admin { |
166 | 166 | if ( ! is_multisite() ) { |
167 | 167 | add_action( 'pre_user_query', array( $this, 'remove_signups_from_user_query'), 10, 1 ); |
168 | 168 | } |
169 | | |
| 169 | |
| 170 | // Reorganise the views navigation in users.php and signups page |
170 | 171 | if ( current_user_can( $this->capability ) ) { |
171 | | // Reorganise the views navigation in users.php and signups page |
172 | 172 | add_filter( "views_{$this->users_screen}", array( $this, 'signup_filter_view' ), 10, 1 ); |
173 | 173 | add_filter( 'set-screen-option', array( $this, 'signup_screen_options' ), 10, 3 ); |
174 | 174 | } |