From 85607ea7f072ad53b8c039b7870ee8273b1011d9 Mon Sep 17 00:00:00 2001 From: Joe Dolson Date: Sun, 14 Apr 2024 13:15:23 -0500 Subject: [PATCH] Change format of connection debugging data --- src/wp-to-twitter-oauth.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/wp-to-twitter-oauth.php b/src/wp-to-twitter-oauth.php index 7acbe7f..90c3510 100644 --- a/src/wp-to-twitter-oauth.php +++ b/src/wp-to-twitter-oauth.php @@ -237,11 +237,11 @@ function wpt_update_oauth_settings( $auth = false, $post = false ) { update_option( 'wpt_curl_error', $error_code ); } if ( '1' === get_option( 'wp_debug_oauth' ) ) { - echo '
Summary Connection Response:
'; + echo '

Summary Connection Response

';
 							print_r( $error_information );
-							echo '
Account Verification Data:
'; + echo '

Account Verification Data

';
 							print_r( $data );
-							echo '
Full Connection Response:
'; + echo '

Full Connection Response

';
 							print_r( $connection );
 							echo '
'; }