Ticket #5081: 5081.01.patch
File 5081.01.patch, 2.9 KB (added by , 11 years ago) |
---|
-
bp-templates/bp-legacy/buddypress/members/register.php
45 45 <?php do_action( 'bp_signup_password_confirm_errors' ); ?> 46 46 <input type="password" name="signup_password_confirm" id="signup_password_confirm" value="" /> 47 47 48 <?php do_action( 'bp_account_details_fields' ); ?> 49 48 50 </div><!-- #basic-details-section --> 49 51 50 52 <?php do_action( 'bp_after_account_details_fields' ); ?> … … 184 186 185 187 <?php endwhile; endif; endif; ?> 186 188 189 <?php do_action( 'bp_signup_profile_fields' ); ?> 190 187 191 </div><!-- #profile-details-section --> 188 192 189 193 <?php do_action( 'bp_after_signup_profile_fields' ); ?> … … 223 227 <label><input type="radio" name="signup_blog_privacy" id="signup_blog_privacy_public" value="public"<?php if ( 'public' == bp_get_signup_blog_privacy_value() || !bp_get_signup_blog_privacy_value() ) : ?> checked="checked"<?php endif; ?> /> <?php _e( 'Yes', 'buddypress' ); ?></label> 224 228 <label><input type="radio" name="signup_blog_privacy" id="signup_blog_privacy_private" value="private"<?php if ( 'private' == bp_get_signup_blog_privacy_value() ) : ?> checked="checked"<?php endif; ?> /> <?php _e( 'No', 'buddypress' ); ?></label> 225 229 230 <?php do_action( 'bp_blog_details_fields' ); ?> 231 226 232 </div> 227 233 228 234 </div><!-- #blog-details-section --> -
bp-themes/bp-default/registration/register.php
50 50 <?php do_action( 'bp_signup_password_confirm_errors' ); ?> 51 51 <input type="password" name="signup_password_confirm" id="signup_password_confirm" value="" /> 52 52 53 <?php do_action( 'bp_account_details_fields' ); ?> 54 53 55 </div><!-- #basic-details-section --> 54 56 55 57 <?php do_action( 'bp_after_account_details_fields' ); ?> … … 189 191 190 192 <?php endwhile; endif; endif; ?> 191 193 194 <?php do_action( 'bp_signup_profile_fields' ); ?> 195 192 196 </div><!-- #profile-details-section --> 193 197 194 198 <?php do_action( 'bp_after_signup_profile_fields' ); ?> … … 228 232 <label><input type="radio" name="signup_blog_privacy" id="signup_blog_privacy_public" value="public"<?php if ( 'public' == bp_get_signup_blog_privacy_value() || !bp_get_signup_blog_privacy_value() ) : ?> checked="checked"<?php endif; ?> /> <?php _e( 'Yes', 'buddypress' ); ?></label> 229 233 <label><input type="radio" name="signup_blog_privacy" id="signup_blog_privacy_private" value="private"<?php if ( 'private' == bp_get_signup_blog_privacy_value() ) : ?> checked="checked"<?php endif; ?> /> <?php _e( 'No', 'buddypress' ); ?></label> 230 234 235 <?php do_action( 'bp_blog_details_fields' ); ?> 236 231 237 </div> 232 238 233 239 </div><!-- #blog-details-section -->