Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
02/12/2012 08:09:34 PM (13 years ago)
Author:
johnjamesjacoby
Message:

Add ending semicolons to bp-default where omitted. Fixes #4002.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-themes/bp-default/registration/register.php

    r5380 r5737  
    1 <?php get_header( 'buddypress' ) ?>
     1<?php get_header( 'buddypress' ); ?>
    22
    33    <div id="content">
    44        <div class="padder">
    55
    6         <?php do_action( 'bp_before_register_page' ) ?>
     6        <?php do_action( 'bp_before_register_page' ); ?>
    77
    88        <div class="page" id="register-page">
     
    1111
    1212            <?php if ( 'registration-disabled' == bp_get_current_signup_step() ) : ?>
    13                 <?php do_action( 'template_notices' ) ?>
    14                 <?php do_action( 'bp_before_registration_disabled' ) ?>
     13                <?php do_action( 'template_notices' ); ?>
     14                <?php do_action( 'bp_before_registration_disabled' ); ?>
    1515
    1616                    <p><?php _e( 'User registration is currently not allowed.', 'buddypress' ); ?></p>
     
    2121            <?php if ( 'request-details' == bp_get_current_signup_step() ) : ?>
    2222
    23                 <h2><?php _e( 'Create an Account', 'buddypress' ) ?></h2>
    24 
    25                 <?php do_action( 'template_notices' ) ?>
    26 
    27                 <p><?php _e( 'Registering for this site is easy, just fill in the fields below and we\'ll get a new account set up for you in no time.', 'buddypress' ) ?></p>
    28 
    29                 <?php do_action( 'bp_before_account_details_fields' ) ?>
     23                <h2><?php _e( 'Create an Account', 'buddypress' ); ?></h2>
     24
     25                <?php do_action( 'template_notices' ); ?>
     26
     27                <p><?php _e( 'Registering for this site is easy, just fill in the fields below and we\'ll get a new account set up for you in no time.', 'buddypress' ); ?></p>
     28
     29                <?php do_action( 'bp_before_account_details_fields' ); ?>
    3030
    3131                <div class="register-section" id="basic-details-section">
     
    3333                    <?php /***** Basic Account Details ******/ ?>
    3434
    35                     <h4><?php _e( 'Account Details', 'buddypress' ) ?></h4>
    36 
    37                     <label for="signup_username"><?php _e( 'Username', 'buddypress' ) ?> <?php _e( '(required)', 'buddypress' ) ?></label>
    38                     <?php do_action( 'bp_signup_username_errors' ) ?>
    39                     <input type="text" name="signup_username" id="signup_username" value="<?php bp_signup_username_value() ?>" />
    40 
    41                     <label for="signup_email"><?php _e( 'Email Address', 'buddypress' ) ?> <?php _e( '(required)', 'buddypress' ) ?></label>
    42                     <?php do_action( 'bp_signup_email_errors' ) ?>
    43                     <input type="text" name="signup_email" id="signup_email" value="<?php bp_signup_email_value() ?>" />
    44 
    45                     <label for="signup_password"><?php _e( 'Choose a Password', 'buddypress' ) ?> <?php _e( '(required)', 'buddypress' ) ?></label>
    46                     <?php do_action( 'bp_signup_password_errors' ) ?>
     35                    <h4><?php _e( 'Account Details', 'buddypress' ); ?></h4>
     36
     37                    <label for="signup_username"><?php _e( 'Username', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label>
     38                    <?php do_action( 'bp_signup_username_errors' ); ?>
     39                    <input type="text" name="signup_username" id="signup_username" value="<?php bp_signup_username_value(); ?>" />
     40
     41                    <label for="signup_email"><?php _e( 'Email Address', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label>
     42                    <?php do_action( 'bp_signup_email_errors' ); ?>
     43                    <input type="text" name="signup_email" id="signup_email" value="<?php bp_signup_email_value(); ?>" />
     44
     45                    <label for="signup_password"><?php _e( 'Choose a Password', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label>
     46                    <?php do_action( 'bp_signup_password_errors' ); ?>
    4747                    <input type="password" name="signup_password" id="signup_password" value="" />
    4848
    49                     <label for="signup_password_confirm"><?php _e( 'Confirm Password', 'buddypress' ) ?> <?php _e( '(required)', 'buddypress' ) ?></label>
    50                     <?php do_action( 'bp_signup_password_confirm_errors' ) ?>
     49                    <label for="signup_password_confirm"><?php _e( 'Confirm Password', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label>
     50                    <?php do_action( 'bp_signup_password_confirm_errors' ); ?>
    5151                    <input type="password" name="signup_password_confirm" id="signup_password_confirm" value="" />
    5252
    5353                </div><!-- #basic-details-section -->
    5454
    55                 <?php do_action( 'bp_after_account_details_fields' ) ?>
     55                <?php do_action( 'bp_after_account_details_fields' ); ?>
    5656
    5757                <?php /***** Extra Profile Details ******/ ?>
     
    5959                <?php if ( bp_is_active( 'xprofile' ) ) : ?>
    6060
    61                     <?php do_action( 'bp_before_signup_profile_fields' ) ?>
     61                    <?php do_action( 'bp_before_signup_profile_fields' ); ?>
    6262
    6363                    <div class="register-section" id="profile-details-section">
    6464
    65                         <h4><?php _e( 'Profile Details', 'buddypress' ) ?></h4>
     65                        <h4><?php _e( 'Profile Details', 'buddypress' ); ?></h4>
    6666
    6767                        <?php /* Use the profile field loop to render input fields for the 'base' profile field group */ ?>
     
    7474                                <?php if ( 'textbox' == bp_get_the_profile_field_type() ) : ?>
    7575
    76                                     <label for="<?php bp_the_profile_field_input_name() ?>"><?php bp_the_profile_field_name() ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ) ?><?php endif; ?></label>
    77                                     <?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors' ) ?>
    78                                     <input type="text" name="<?php bp_the_profile_field_input_name() ?>" id="<?php bp_the_profile_field_input_name() ?>" value="<?php bp_the_profile_field_edit_value() ?>" />
     76                                    <label for="<?php bp_the_profile_field_input_name(); ?>"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></label>
     77                                    <?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors' ); ?>
     78                                    <input type="text" name="<?php bp_the_profile_field_input_name(); ?>" id="<?php bp_the_profile_field_input_name(); ?>" value="<?php bp_the_profile_field_edit_value(); ?>" />
    7979
    8080                                <?php endif; ?>
     
    8282                                <?php if ( 'textarea' == bp_get_the_profile_field_type() ) : ?>
    8383
    84                                     <label for="<?php bp_the_profile_field_input_name() ?>"><?php bp_the_profile_field_name() ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ) ?><?php endif; ?></label>
    85                                     <?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors' ) ?>
    86                                     <textarea rows="5" cols="40" name="<?php bp_the_profile_field_input_name() ?>" id="<?php bp_the_profile_field_input_name() ?>"><?php bp_the_profile_field_edit_value() ?></textarea>
     84                                    <label for="<?php bp_the_profile_field_input_name(); ?>"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></label>
     85                                    <?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors' ); ?>
     86                                    <textarea rows="5" cols="40" name="<?php bp_the_profile_field_input_name(); ?>" id="<?php bp_the_profile_field_input_name(); ?>"><?php bp_the_profile_field_edit_value(); ?></textarea>
    8787
    8888                                <?php endif; ?>
     
    9090                                <?php if ( 'selectbox' == bp_get_the_profile_field_type() ) : ?>
    9191
    92                                     <label for="<?php bp_the_profile_field_input_name() ?>"><?php bp_the_profile_field_name() ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ) ?><?php endif; ?></label>
    93                                     <?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors' ) ?>
    94                                     <select name="<?php bp_the_profile_field_input_name() ?>" id="<?php bp_the_profile_field_input_name() ?>">
    95                                         <?php bp_the_profile_field_options() ?>
     92                                    <label for="<?php bp_the_profile_field_input_name(); ?>"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></label>
     93                                    <?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors' ); ?>
     94                                    <select name="<?php bp_the_profile_field_input_name(); ?>" id="<?php bp_the_profile_field_input_name(); ?>">
     95                                        <?php bp_the_profile_field_options(); ?>
    9696                                    </select>
    9797
     
    100100                                <?php if ( 'multiselectbox' == bp_get_the_profile_field_type() ) : ?>
    101101
    102                                     <label for="<?php bp_the_profile_field_input_name() ?>"><?php bp_the_profile_field_name() ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ) ?><?php endif; ?></label>
    103                                     <?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors' ) ?>
    104                                     <select name="<?php bp_the_profile_field_input_name() ?>" id="<?php bp_the_profile_field_input_name() ?>" multiple="multiple">
    105                                         <?php bp_the_profile_field_options() ?>
     102                                    <label for="<?php bp_the_profile_field_input_name(); ?>"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></label>
     103                                    <?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors' ); ?>
     104                                    <select name="<?php bp_the_profile_field_input_name(); ?>" id="<?php bp_the_profile_field_input_name(); ?>" multiple="multiple">
     105                                        <?php bp_the_profile_field_options(); ?>
    106106                                    </select>
    107107
     
    111111
    112112                                    <div class="radio">
    113                                         <span class="label"><?php bp_the_profile_field_name() ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ) ?><?php endif; ?></span>
    114 
    115                                         <?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors' ) ?>
    116                                         <?php bp_the_profile_field_options() ?>
     113                                        <span class="label"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></span>
     114
     115                                        <?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors' ); ?>
     116                                        <?php bp_the_profile_field_options(); ?>
    117117
    118118                                        <?php if ( !bp_get_the_profile_field_is_required() ) : ?>
    119                                             <a class="clear-value" href="javascript:clear( '<?php bp_the_profile_field_input_name() ?>' );"><?php _e( 'Clear', 'buddypress' ) ?></a>
     119                                            <a class="clear-value" href="javascript:clear( '<?php bp_the_profile_field_input_name(); ?>' );"><?php _e( 'Clear', 'buddypress' ); ?></a>
    120120                                        <?php endif; ?>
    121121                                    </div>
     
    126126
    127127                                    <div class="checkbox">
    128                                         <span class="label"><?php bp_the_profile_field_name() ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ) ?><?php endif; ?></span>
    129 
    130                                         <?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors' ) ?>
    131                                         <?php bp_the_profile_field_options() ?>
     128                                        <span class="label"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></span>
     129
     130                                        <?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors' ); ?>
     131                                        <?php bp_the_profile_field_options(); ?>
    132132                                    </div>
    133133
     
    137137
    138138                                    <div class="datebox">
    139                                         <label for="<?php bp_the_profile_field_input_name() ?>_day"><?php bp_the_profile_field_name() ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ) ?><?php endif; ?></label>
    140                                         <?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors' ) ?>
    141 
    142                                         <select name="<?php bp_the_profile_field_input_name() ?>_day" id="<?php bp_the_profile_field_input_name() ?>_day">
    143                                             <?php bp_the_profile_field_options( 'type=day' ) ?>
     139                                        <label for="<?php bp_the_profile_field_input_name(); ?>_day"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></label>
     140                                        <?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors' ); ?>
     141
     142                                        <select name="<?php bp_the_profile_field_input_name(); ?>_day" id="<?php bp_the_profile_field_input_name(); ?>_day">
     143                                            <?php bp_the_profile_field_options( 'type=day' ); ?>
    144144                                        </select>
    145145
    146                                         <select name="<?php bp_the_profile_field_input_name() ?>_month" id="<?php bp_the_profile_field_input_name() ?>_month">
    147                                             <?php bp_the_profile_field_options( 'type=month' ) ?>
     146                                        <select name="<?php bp_the_profile_field_input_name(); ?>_month" id="<?php bp_the_profile_field_input_name(); ?>_month">
     147                                            <?php bp_the_profile_field_options( 'type=month' ); ?>
    148148                                        </select>
    149149
    150                                         <select name="<?php bp_the_profile_field_input_name() ?>_year" id="<?php bp_the_profile_field_input_name() ?>_year">
    151                                             <?php bp_the_profile_field_options( 'type=year' ) ?>
     150                                        <select name="<?php bp_the_profile_field_input_name(); ?>_year" id="<?php bp_the_profile_field_input_name(); ?>_year">
     151                                            <?php bp_the_profile_field_options( 'type=year' ); ?>
    152152                                        </select>
    153153                                    </div>
     
    155155                                <?php endif; ?>
    156156
    157                                 <?php do_action( 'bp_custom_profile_edit_fields' ) ?>
    158 
    159                                 <p class="description"><?php bp_the_profile_field_description() ?></p>
     157                                <?php do_action( 'bp_custom_profile_edit_fields' ); ?>
     158
     159                                <p class="description"><?php bp_the_profile_field_description(); ?></p>
    160160
    161161                            </div>
     
    163163                        <?php endwhile; ?>
    164164
    165                         <input type="hidden" name="signup_profile_field_ids" id="signup_profile_field_ids" value="<?php bp_the_profile_group_field_ids() ?>" />
     165                        <input type="hidden" name="signup_profile_field_ids" id="signup_profile_field_ids" value="<?php bp_the_profile_group_field_ids(); ?>" />
    166166
    167167                        <?php endwhile; endif; endif; ?>
     
    169169                    </div><!-- #profile-details-section -->
    170170
    171                     <?php do_action( 'bp_after_signup_profile_fields' ) ?>
     171                    <?php do_action( 'bp_after_signup_profile_fields' ); ?>
    172172
    173173                <?php endif; ?>
     
    175175                <?php if ( bp_get_blog_signup_allowed() ) : ?>
    176176
    177                     <?php do_action( 'bp_before_blog_details_fields' ) ?>
     177                    <?php do_action( 'bp_before_blog_details_fields' ); ?>
    178178
    179179                    <?php /***** Blog Creation Details ******/ ?>
     
    181181                    <div class="register-section" id="blog-details-section">
    182182
    183                         <h4><?php _e( 'Blog Details', 'buddypress' ) ?></h4>
    184 
    185                         <p><input type="checkbox" name="signup_with_blog" id="signup_with_blog" value="1"<?php if ( (int) bp_get_signup_with_blog_value() ) : ?> checked="checked"<?php endif; ?> /> <?php _e( 'Yes, I\'d like to create a new site', 'buddypress' ) ?></p>
     183                        <h4><?php _e( 'Blog Details', 'buddypress' ); ?></h4>
     184
     185                        <p><input type="checkbox" name="signup_with_blog" id="signup_with_blog" value="1"<?php if ( (int) bp_get_signup_with_blog_value() ) : ?> checked="checked"<?php endif; ?> /> <?php _e( 'Yes, I\'d like to create a new site', 'buddypress' ); ?></p>
    186186
    187187                        <div id="blog-details"<?php if ( (int) bp_get_signup_with_blog_value() ) : ?>class="show"<?php endif; ?>>
    188188
    189                             <label for="signup_blog_url"><?php _e( 'Blog URL', 'buddypress' ) ?> <?php _e( '(required)', 'buddypress' ) ?></label>
    190                             <?php do_action( 'bp_signup_blog_url_errors' ) ?>
     189                            <label for="signup_blog_url"><?php _e( 'Blog URL', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label>
     190                            <?php do_action( 'bp_signup_blog_url_errors' ); ?>
    191191
    192192                            <?php if ( is_subdomain_install() ) : ?>
    193                                 http:// <input type="text" name="signup_blog_url" id="signup_blog_url" value="<?php bp_signup_blog_url_value() ?>" /> .<?php bp_blogs_subdomain_base() ?>
     193                                http:// <input type="text" name="signup_blog_url" id="signup_blog_url" value="<?php bp_signup_blog_url_value(); ?>" /> .<?php bp_blogs_subdomain_base(); ?>
    194194                            <?php else : ?>
    195                                 <?php echo site_url() ?>/ <input type="text" name="signup_blog_url" id="signup_blog_url" value="<?php bp_signup_blog_url_value() ?>" />
     195                                <?php echo site_url(); ?>/ <input type="text" name="signup_blog_url" id="signup_blog_url" value="<?php bp_signup_blog_url_value(); ?>" />
    196196                            <?php endif; ?>
    197197
    198                             <label for="signup_blog_title"><?php _e( 'Site Title', 'buddypress' ) ?> <?php _e( '(required)', 'buddypress' ) ?></label>
    199                             <?php do_action( 'bp_signup_blog_title_errors' ) ?>
    200                             <input type="text" name="signup_blog_title" id="signup_blog_title" value="<?php bp_signup_blog_title_value() ?>" />
    201 
    202                             <span class="label"><?php _e( 'I would like my site to appear in search engines, and in public listings around this network.', 'buddypress' ) ?>:</span>
    203                             <?php do_action( 'bp_signup_blog_privacy_errors' ) ?>
    204 
    205                             <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>
    206                             <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>
     198                            <label for="signup_blog_title"><?php _e( 'Site Title', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label>
     199                            <?php do_action( 'bp_signup_blog_title_errors' ); ?>
     200                            <input type="text" name="signup_blog_title" id="signup_blog_title" value="<?php bp_signup_blog_title_value(); ?>" />
     201
     202                            <span class="label"><?php _e( 'I would like my site to appear in search engines, and in public listings around this network.', 'buddypress' ); ?>:</span>
     203                            <?php do_action( 'bp_signup_blog_privacy_errors' ); ?>
     204
     205                            <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>
     206                            <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>
    207207
    208208                        </div>
     
    210210                    </div><!-- #blog-details-section -->
    211211
    212                     <?php do_action( 'bp_after_blog_details_fields' ) ?>
     212                    <?php do_action( 'bp_after_blog_details_fields' ); ?>
    213213
    214214                <?php endif; ?>
    215215
    216                 <?php do_action( 'bp_before_registration_submit_buttons' ) ?>
     216                <?php do_action( 'bp_before_registration_submit_buttons' ); ?>
    217217
    218218                <div class="submit">
    219                     <input type="submit" name="signup_submit" id="signup_submit" value="<?php _e( 'Complete Sign Up', 'buddypress' ) ?>" />
     219                    <input type="submit" name="signup_submit" id="signup_submit" value="<?php _e( 'Complete Sign Up', 'buddypress' ); ?>" />
    220220                </div>
    221221
    222                 <?php do_action( 'bp_after_registration_submit_buttons' ) ?>
    223 
    224                 <?php wp_nonce_field( 'bp_new_signup' ) ?>
     222                <?php do_action( 'bp_after_registration_submit_buttons' ); ?>
     223
     224                <?php wp_nonce_field( 'bp_new_signup' ); ?>
    225225
    226226            <?php endif; // request-details signup step ?>
     
    228228            <?php if ( 'completed-confirmation' == bp_get_current_signup_step() ) : ?>
    229229
    230                 <h2><?php _e( 'Sign Up Complete!', 'buddypress' ) ?></h2>
    231 
    232                 <?php do_action( 'template_notices' ) ?>
    233                 <?php do_action( 'bp_before_registration_confirmed' ) ?>
     230                <h2><?php _e( 'Sign Up Complete!', 'buddypress' ); ?></h2>
     231
     232                <?php do_action( 'template_notices' ); ?>
     233                <?php do_action( 'bp_before_registration_confirmed' ); ?>
    234234
    235235                <?php if ( bp_registration_needs_activation() ) : ?>
    236                     <p><?php _e( 'You have successfully created your account! To begin using this site you will need to activate your account via the email we have just sent to your address.', 'buddypress' ) ?></p>
     236                    <p><?php _e( 'You have successfully created your account! To begin using this site you will need to activate your account via the email we have just sent to your address.', 'buddypress' ); ?></p>
    237237                <?php else : ?>
    238                     <p><?php _e( 'You have successfully created your account! Please log in using the username and password you have just created.', 'buddypress' ) ?></p>
     238                    <p><?php _e( 'You have successfully created your account! Please log in using the username and password you have just created.', 'buddypress' ); ?></p>
    239239                <?php endif; ?>
    240240
    241                 <?php do_action( 'bp_after_registration_confirmed' ) ?>
     241                <?php do_action( 'bp_after_registration_confirmed' ); ?>
    242242
    243243            <?php endif; // completed-confirmation signup step ?>
    244244
    245             <?php do_action( 'bp_custom_signup_steps' ) ?>
     245            <?php do_action( 'bp_custom_signup_steps' ); ?>
    246246
    247247            </form>
     
    249249        </div>
    250250
    251         <?php do_action( 'bp_after_register_page' ) ?>
     251        <?php do_action( 'bp_after_register_page' ); ?>
    252252
    253253        </div><!-- .padder -->
    254254    </div><!-- #content -->
    255255
    256     <?php get_sidebar( 'buddypress' ) ?>
     256    <?php get_sidebar( 'buddypress' ); ?>
    257257
    258258    <script type="text/javascript">
     
    267267    </script>
    268268
    269 <?php get_footer( 'buddypress' ) ?>
     269<?php get_footer( 'buddypress' ); ?>
Note: See TracChangeset for help on using the changeset viewer.