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/activate.php

    r4675 r5737  
    44        <div class="padder">
    55
    6         <?php do_action( 'bp_before_activation_page' ) ?>
     6        <?php do_action( 'bp_before_activation_page' ); ?>
    77
    88        <div class="page" id="activate-page">
     
    1010            <?php if ( bp_account_was_activated() ) : ?>
    1111
    12                 <h2 class="widgettitle"><?php _e( 'Account Activated', 'buddypress' ) ?></h2>
     12                <h2 class="widgettitle"><?php _e( 'Account Activated', 'buddypress' ); ?></h2>
    1313
    14                 <?php do_action( 'bp_before_activate_content' ) ?>
     14                <?php do_action( 'bp_before_activate_content' ); ?>
    1515
    1616                <?php if ( isset( $_GET['e'] ) ) : ?>
    17                     <p><?php _e( 'Your account was activated successfully! Your account details have been sent to you in a separate email.', 'buddypress' ) ?></p>
     17                    <p><?php _e( 'Your account was activated successfully! Your account details have been sent to you in a separate email.', 'buddypress' ); ?></p>
    1818                <?php else : ?>
    19                     <p><?php _e( 'Your account was activated successfully! You can now log in with the username and password you provided when you signed up.', 'buddypress' ) ?></p>
     19                    <p><?php _e( 'Your account was activated successfully! You can now log in with the username and password you provided when you signed up.', 'buddypress' ); ?></p>
    2020                <?php endif; ?>
    2121
    2222            <?php else : ?>
    2323
    24                 <h3><?php _e( 'Activate your Account', 'buddypress' ) ?></h3>
     24                <h3><?php _e( 'Activate your Account', 'buddypress' ); ?></h3>
    2525
    26                 <?php do_action( 'bp_before_activate_content' ) ?>
     26                <?php do_action( 'bp_before_activate_content' ); ?>
    2727
    28                 <p><?php _e( 'Please provide a valid activation key.', 'buddypress' ) ?></p>
     28                <p><?php _e( 'Please provide a valid activation key.', 'buddypress' ); ?></p>
    2929
    3030                <form action="" method="get" class="standard-form" id="activation-form">
    3131
    32                     <label for="key"><?php _e( 'Activation Key:', 'buddypress' ) ?></label>
     32                    <label for="key"><?php _e( 'Activation Key:', 'buddypress' ); ?></label>
    3333                    <input type="text" name="key" id="key" value="" />
    3434
    3535                    <p class="submit">
    36                         <input type="submit" name="submit" value="<?php _e( 'Activate', 'buddypress' ) ?>" />
     36                        <input type="submit" name="submit" value="<?php _e( 'Activate', 'buddypress' ); ?>" />
    3737                    </p>
    3838
     
    4141            <?php endif; ?>
    4242
    43             <?php do_action( 'bp_after_activate_content' ) ?>
     43            <?php do_action( 'bp_after_activate_content' ); ?>
    4444
    4545        </div><!-- .page -->
    4646
    47         <?php do_action( 'bp_after_activation_page' ) ?>
     47        <?php do_action( 'bp_after_activation_page' ); ?>
    4848
    4949        </div><!-- .padder -->
    5050    </div><!-- #content -->
    5151
    52     <?php get_sidebar( 'buddypress' ) ?>
     52    <?php get_sidebar( 'buddypress' ); ?>
    5353
    5454<?php get_footer( 'buddypress' ); ?>
Note: See TracChangeset for help on using the changeset viewer.