Skip to content

Commit

Permalink
Revert merge of #6 92f9ce5
Browse files Browse the repository at this point in the history
  • Loading branch information
kadamwhite committed Jan 16, 2023
1 parent 70e4c77 commit 59b577a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion providers/class.two-factor-email.php
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public function generate_and_email_token( $user ) {
$token = $this->generate_token( $user->ID );

/* translators: %s: site name */
$subject = wp_strip_all_tags( sprintf( __( 'Your login confirmation code for %s', 'two-factor' ), mb_encode_mimeheader( get_option( 'blogname' ), ENT_QUOTES ) ) );
$subject = wp_strip_all_tags( sprintf( __( 'Your login confirmation code for %s', 'two-factor' ), get_bloginfo( 'name' ) ) );
/* translators: %s: token */
$message = wp_strip_all_tags( sprintf( __( 'Enter %s to log in.', 'two-factor' ), $token ) );

Expand Down

0 comments on commit 59b577a

Please sign in to comment.