Changeset 9698 for trunk/src/bp-members/bp-members-screens.php
- Timestamp:
- 04/05/2015 06:18:13 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-members/bp-members-screens.php
r9471 r9698 157 157 // Finally, let's check the blog details, if the user wants a blog and blog creation is enabled 158 158 if ( isset( $_POST['signup_with_blog'] ) ) { 159 $active_signup = $bp->site_options['registration'];159 $active_signup = bp_core_get_root_option( 'registration' ); 160 160 161 161 if ( 'blog' == $active_signup || 'all' == $active_signup ) { … … 197 197 198 198 // No errors! Let's register those deets. 199 $active_signup = !empty( $bp->site_options['registration'] ) ? $bp->site_options['registration'] : '';199 $active_signup = bp_core_get_root_option( 'registration' ); 200 200 201 201 if ( 'none' != $active_signup ) {
Note: See TracChangeset
for help on using the changeset viewer.