Changeset 2695 for trunk/bp-core/bp-core-signup.php
- Timestamp:
- 02/12/2010 12:31:49 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-core/bp-core-signup.php
r2617 r2695 71 71 /* Finally, let's check the blog details, if the user wants a blog and blog creation is enabled */ 72 72 if ( isset( $_POST['signup_with_blog'] ) ) { 73 $active_signup = get_site_option( 'registration' );73 $active_signup = $bp->site_options['registration']; 74 74 75 75 if ( 'blog' == $active_signup || 'all' == $active_signup ) { … … 95 95 96 96 /* No errors! Let's register those deets. */ 97 $active_signup = get_site_option( 'registration' );97 $active_signup = $bp->site_options['registration']; 98 98 99 99 if ( 'none' != $active_signup ) {
Note: See TracChangeset
for help on using the changeset viewer.