- Timestamp:
- 04/29/2024 06:50:42 PM (20 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-legacy/buddypress/members/activate.php
r13436 r13822 43 43 44 44 <?php if ( isset( $_GET['e'] ) ) : ?> 45 <p><?php _e( 'Your account was activated successfully! Your account details have been sent to you in a separate email.', 'buddypress' ); ?></p>45 <p><?php esc_html_e( 'Your account was activated successfully! Your account details have been sent to you in a separate email.', 'buddypress' ); ?></p> 46 46 <?php else : ?> 47 47 <p> 48 48 <?php 49 49 /* translators: %s: login url */ 50 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_url() ) ); 50 printf( 51 esc_html__( 'Your account was activated successfully! You can now %s with the username and password you provided when you signed up.', 'buddypress' ), 52 '<a href="'. esc_url( wp_login_url( bp_get_root_url() ) ) . '">' . esc_html__( 'log in', 'buddypress' ) . '</a>' 53 ); 51 54 ?> 52 55 </p> … … 55 58 <?php else : ?> 56 59 57 <p><?php _e( 'Please provide a valid activation key.', 'buddypress' ); ?></p>60 <p><?php esc_html_e( 'Please provide a valid activation key.', 'buddypress' ); ?></p> 58 61 59 62 <form action="" method="post" class="standard-form" id="activation-form"> 60 63 61 <label for="key"><?php _e( 'Activation Key:', 'buddypress' ); ?></label>64 <label for="key"><?php esc_html_e( 'Activation Key:', 'buddypress' ); ?></label> 62 65 <input type="text" name="key" id="key" value="<?php echo esc_attr( bp_get_current_activation_key() ); ?>" /> 63 66
Note: See TracChangeset
for help on using the changeset viewer.