Skip to content

Commit 255eaa2

Browse files
committed
Use correct message for verification token UI
1 parent 30accc9 commit 255eaa2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/class-wp-json-authentication-oauth1-authorize.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ public function handle_callback_redirect( $verifier ) {
135135
if ( empty( $this->token['callback'] ) ) {
136136
// No callback registered, display verification code to the user
137137
login_header( __( 'Access Token' ) );
138-
echo '<p>' . sprintf( __( 'Your access token is <code>%s</code>' ), $verifier ) . '</p>';
138+
echo '<p>' . sprintf( __( 'Your verification token is <code>%s</code>' ), $verifier ) . '</p>';
139139
login_footer();
140140

141141
return null;

0 commit comments

Comments
 (0)