- Timestamp:
- 09/07/2018 01:45:37 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-nouveau/buddypress/members/activate.php
r12156 r12220 4 4 * 5 5 * @since 3.0.0 6 * @version 3. 1.06 * @version 3.2.0 7 7 */ 8 8 ?> … … 21 21 <p><?php esc_html_e( 'Your account was activated successfully! Your account details have been sent to you in a separate email.', 'buddypress' ); ?></p> 22 22 <?php else : ?> 23 <p> 24 <?php 25 echo esc_html( 26 sprintf( 27 __( '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' ), 28 wp_login_url( bp_get_root_domain() ) 29 ) 30 ); 31 ?> 32 </p> 23 <p><?php esc_html_e( 'Your account was activated successfully! You can now log in with the username and password you provided when you signed up.', 'buddypress' ); ?></p> 33 24 <?php endif; ?> 25 26 <?php 27 printf( 28 '<p><a href="%1$s">%2$s</a></p>', 29 esc_url( wp_login_url( bp_get_root_domain() ) ), 30 esc_html__( 'Log In', 'buddypress' ) 31 ); 32 ?> 34 33 35 34 <?php else : ?>
Note: See TracChangeset
for help on using the changeset viewer.