Skip to:
Content

BuddyPress.org

Ticket #5374: 5374.sign-up-disabled.03.nocheck.diff

File 5374.sign-up-disabled.03.nocheck.diff, 2.0 KB (added by imath, 10 years ago)
  • bp-core/admin/bp-core-schema.php

    diff --git bp-core/admin/bp-core-schema.php bp-core/admin/bp-core-schema.php
    index 53a4ceb..3db4c1c 100644
    function bp_core_install( $active_components = false ) { 
    5252                bp_core_install_blog_tracking();
    5353
    5454        // Install the signups table
    55         if ( bp_get_signup_allowed() )
    56                 bp_core_install_signups();
     55        bp_core_install_signups();
    5756
    5857}
    5958
  • bp-core/bp-core-update.php

    diff --git bp-core/bp-core-update.php bp-core/bp-core-update.php
    index 6c59538..d388c26 100644
    function bp_update_to_2_0() { 
    351351
    352352        /** Migrate signups data *********************************************/
    353353
    354         if ( bp_get_signup_allowed() && ! is_multisite() ) {
     354        if ( ! is_multisite() ) {
    355355
    356356                if ( empty( $wpdb->signups ) ) {
    357357                        bp_core_install_signups();
  • bp-members/bp-members-admin.php

    diff --git bp-members/bp-members-admin.php bp-members/bp-members-admin.php
    index 74b80d2..3a07766 100644
    class BP_Members_Admin { 
    162162
    163163                /** Signups **************************************************************/
    164164
    165                 if ( bp_get_signup_allowed() && is_admin() ) {
     165                if ( is_admin() ) {
    166166                        if ( ! is_multisite() ) {
    167167                                add_action( 'pre_user_query', array( $this, 'remove_signups_from_user_query'),  10, 1 );
    168168                        }
    class BP_Members_Admin { 
    194194                        array( &$this, 'user_admin' )
    195195                );
    196196
    197                 // Manage signups if allowed
    198                 if ( bp_get_signup_allowed() ) {
    199                         $hooks['signups'] = $this->signups_page = add_users_page(
    200                                 __( 'Manage Signups',  'buddypress' ),
    201                                 __( 'Manage Signups',  'buddypress' ),
    202                                 $this->capability,
    203                                 'bp-signups',
    204                                 array( &$this, 'signups_admin' )
    205                         );
    206                 }
     197                // Manage signups
     198                $hooks['signups'] = $this->signups_page = add_users_page(
     199                        __( 'Manage Signups',  'buddypress' ),
     200                        __( 'Manage Signups',  'buddypress' ),
     201                        $this->capability,
     202                        'bp-signups',
     203                        array( &$this, 'signups_admin' )
     204                );
    207205
    208206                $edit_page = 'user-edit';
    209207                $this->users_page = 'users';