Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
03/29/2014 12:04:49 AM (11 years ago)
Author:
imath
Message:

Remove the bp_get_signup_allowed() checks in Sign-ups management feature

  • Create $wpdb->signups table even if sign-ups are not allowed on single blog config
  • Display the UI to manage sign-ups even if signups are not allowed

This way, administrator who temporarly deactivated registrations will still be able to moderate the pending signups.

props johnjamesjacoby, boonebgorges

See #5374

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-core/bp-core-update.php

    r8195 r8196  
    353353    /** Migrate signups data **************************************************/
    354354
    355     if ( bp_get_signup_allowed() && ! is_multisite() ) {
     355    if ( ! is_multisite() ) {
    356356
    357357        if ( empty( $wpdb->signups ) ) {
Note: See TracChangeset for help on using the changeset viewer.