diff --git a/src/css/styles.css b/src/css/styles.css index 52c2840..09e6477 100644 --- a/src/css/styles.css +++ b/src/css/styles.css @@ -166,6 +166,10 @@ label[for="wpt_license_key"] { width: 100%; } +#wpt_settings_page .inline-labels label { + vertical-align: inherit; +} + #wpt_settings_page .tabs { margin: .5em 0 0; padding: 0 4px; diff --git a/src/wp-to-twitter.php b/src/wp-to-twitter.php index 5d4a15a..a55cc13 100644 --- a/src/wp-to-twitter.php +++ b/src/wp-to-twitter.php @@ -394,7 +394,7 @@ function wpt_post_to_twitter( $twit, $auth = false, $id = false, $media = false return false; } elseif ( '' === $twit || ! $twit ) { - wpt_mail( 'Statud update check: empty sentence', "$twit, $auth, $id, $media", $id ); // DEBUG. + wpt_mail( 'Status update check: empty sentence', "$twit, $auth, $id, $media", $id ); // DEBUG. $error = __( 'This status update was blank and could not be sent to the API.', 'wp-to-twitter' ); wpt_save_error( $id, $auth, $twit, $error, '403-2', time() ); wpt_set_log( 'wpt_status_message', $id, $error ); @@ -1595,11 +1595,11 @@ function wpt_show_tweets( $post_id ) { $twitter_intent = ''; $mastodon_intent = ''; if ( wtt_oauth_test() ) { - $twitter_intent = "" . __( 'Repost on X.com', 'wp-to-twitter' ) . ''; + $twitter_intent = "" . __( 'Repost on X.com', 'wp-to-twitter' ) . ''; } if ( wpt_mastodon_connection() ) { $mastodon = get_option( 'wpt_mastodon_instance' ); - $mastodon_intent = "" . __( 'Repost on Mastodon', 'wp-to-twitter' ) . ''; + $mastodon_intent = "" . __( 'Repost on Mastodon', 'wp-to-twitter' ) . ''; } $hidden_fields .= ""; echo "
  • $previous_tweet $twitter_intent $mastodon_intent
  • ";