- Timestamp:
- 05/21/2018 01:00:36 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-nouveau/buddypress/members/activate.php
r12082 r12104 18 18 19 19 <?php if ( isset( $_GET['e'] ) ) : ?> 20 <p><?php _e( 'Your account was activated successfully! Your account details have been sent to you in a separate email.', 'buddypress' ); ?></p>20 <p><?php esc_html_e( 'Your account was activated successfully! Your account details have been sent to you in a separate email.', 'buddypress' ); ?></p> 21 21 <?php else : ?> 22 <p><?php printf( __( 'Your account was activated successfully! You can now <a href="%s">log in</a> with the username and password you provided when you signed up.', 'buddypress' ), wp_login_url( bp_get_root_domain() ) ); ?></p> 22 <p> 23 <?php 24 echo esc_html( 25 sprintf( 26 __( 'Your account was activated successfully! You can now <a href="%s">log in</a> with the username and password you provided when you signed up.', 'buddypress' ), 27 wp_login_url( bp_get_root_domain() ) 28 ) 29 ); 30 ?> 31 </p> 23 32 <?php endif; ?> 24 33 25 34 <?php else : ?> 26 35 27 <p><?php _e( 'Please provide a valid activation key.', 'buddypress' ); ?></p>36 <p><?php esc_html_e( 'Please provide a valid activation key.', 'buddypress' ); ?></p> 28 37 29 38 <form action="" method="post" class="standard-form" id="activation-form"> 30 39 31 <label for="key"><?php _e( 'Activation Key:', 'buddypress' ); ?></label>40 <label for="key"><?php esc_html_e( 'Activation Key:', 'buddypress' ); ?></label> 32 41 <input type="text" name="key" id="key" value="<?php echo esc_attr( bp_get_current_activation_key() ); ?>" /> 33 42 34 43 <p class="submit"> 35 <input type="submit" name="submit" value="<?php e sc_attr_e( 'Activate', 'buddypress' ); ?>" />44 <input type="submit" name="submit" value="<?php echo esc_attr_x( 'Activate', 'button', 'buddypress' ); ?>" /> 36 45 </p> 37 46
Note: See TracChangeset
for help on using the changeset viewer.