diff --git src/bp-templates/bp-nouveau/buddypress/members/activate.php src/bp-templates/bp-nouveau/buddypress/members/activate.php
index a0ec42b63..b5148d86b 100644
|
|
|
|
| 18 | 18 | <?php if ( bp_account_was_activated() ) : ?> |
| 19 | 19 | |
| 20 | 20 | <?php if ( isset( $_GET['e'] ) ) : ?> |
| 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> |
| | 21 | <p><?php echo bp_nouveau_sanitize_feedback( __( 'Your account was activated successfully! Your account details have been sent to you in a separate email.', 'buddypress' ) ); ?></p> |
| 22 | 22 | <?php else : ?> |
| 23 | 23 | <p> |
| 24 | 24 | <?php |
| 25 | | echo esc_html( |
| | 25 | echo bp_nouveau_sanitize_feedback( |
| 26 | 26 | sprintf( |
| 27 | 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 | 28 | wp_login_url( bp_get_root_domain() ) |