Skip to content
Prev Previous commit
Next Next commit
Remove stray space before comma in argument list.
  • Loading branch information
Clorith committed Feb 18, 2025
commit ce5523f7816ea5ed5926da317c590b9d6da590a2
2 changes: 1 addition & 1 deletion src/wp-admin/includes/class-wp-debug-data.php
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ private static function get_wp_core(): array {
'value' => wp_get_api_hostname(),
);

$wp_dotorg = wp_remote_get( wp_get_api_hostname() , array( 'timeout' => 10 ) );
$wp_dotorg = wp_remote_get( wp_get_api_hostname(), array( 'timeout' => 10 ) );

if ( ! is_wp_error( $wp_dotorg ) ) {
$fields['dotorg_communication'] = array(
Expand Down