Skip to:
Content

BuddyPress.org

Ticket #6176: 6176.01.patch

File 6176.01.patch, 1.7 KB (added by r-a-y, 10 years ago)
  • src/bp-core/admin/bp-core-slugs.php

     
    138138
    139139                <h3><?php _e( 'Registration', 'buddypress' ); ?></h3>
    140140
    141                 <p><?php _e( 'Associate WordPress Pages with the following BuddyPress Registration pages.', 'buddypress' ); ?></p>
     141                <?php if ( bp_get_option( 'users_can_register' ) ) : ?>
     142                        <p><?php _e( 'Associate WordPress Pages with the following BuddyPress Registration pages.', 'buddypress' ); ?></p>
     143                <?php else : ?>
     144                        <?php if ( is_multisite() ) : ?>
     145                                <p><?php printf( __( 'Registration is currently disabled.  Before associating a page is allowed, please enable registration by selecting either the "User accounts may be registered" or "Both sites and user accounts can be registered" option on <a href="%s">this page</a>.', 'buddypress' ), network_admin_url( 'settings.php' ) ); ?></p>
     146                        <?php else : ?>
     147                                <p><?php printf( __( 'Registration is currently disabled.  Before associating a page is allowed, please enable registration by clicking on the "Anyone can register" checkbox on <a href="%s">this page</a>.', 'buddypress' ), admin_url( 'options-general.php' ) ); ?></p>
     148                        <?php endif; ?>
     149                <?php endif; ?>
    142150
    143151                <table class="form-table">
    144152                        <tbody>
    145153
    146                                 <?php foreach ( $static_pages as $name => $label ) : ?>
     154                                <?php if ( bp_get_option( 'users_can_register' ) ) : foreach ( $static_pages as $name => $label ) : ?>
    147155
    148156                                        <tr valign="top">
    149157                                                <th scope="row">
     
    172180                                                </td>
    173181                                        </tr>
    174182
    175                                 <?php endforeach ?>
     183                                <?php endforeach; endif; ?>
    176184
    177185                                <?php do_action( 'bp_active_external_pages' ); ?>
    178186