diff --git wp-login.php wp-login.php
index 5b3daaa..b2bb70b 100644
|
|
case 'register' : |
762 | 762 | * @since 2.1.0 |
763 | 763 | */ |
764 | 764 | do_action( 'register_form' ); |
| 765 | |
| 766 | /** |
| 767 | * Filter the content of the message for the registration confirmation. |
| 768 | * |
| 769 | * @since 4.4.0 |
| 770 | * |
| 771 | * @param string $reg_conf_message The registration confirmation message |
| 772 | */ |
| 773 | $reg_conf_message = apply_filters( 'registration_confirmation_msg', __( 'Registration confirmation will be emailed to you.' ) ); |
765 | 774 | ?> |
766 | | <p id="reg_passmail"><?php _e( 'Registration confirmation will be emailed to you.' ); ?></p> |
| 775 | <p id="reg_passmail"><?php echo esc_html( $reg_conf_message ); ?></p> |
767 | 776 | <br class="clear" /> |
768 | 777 | <input type="hidden" name="redirect_to" value="<?php echo esc_attr( $redirect_to ); ?>" /> |
769 | 778 | <p class="submit"><input type="submit" name="wp-submit" id="wp-submit" class="button button-primary button-large" value="<?php esc_attr_e('Register'); ?>" /></p> |