Make WordPress Core


Ignore:
Timestamp:
07/05/2019 05:20:52 AM (7 years ago)
Author:
pento
Message:

Coding Standards: Fix all WordPress.WhiteSpace.PrecisionAlignment issues.

See #47632.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/upgrade.php

    r45583 r45602  
    526526
    527527                /*
    528                   * Flush rules with the hard option to force refresh of the web-server's
    529                   * rewrite config file (e.g. .htaccess or web.config).
    530                   */
     528                 * Flush rules with the hard option to force refresh of the web-server's
     529                 * rewrite config file (e.g. .htaccess or web.config).
     530                 */
    531531                $wp_rewrite->flush_rules( true );
    532532
     
    540540
    541541                /*
    542                   * Send a request to the site, and check whether
    543                   * the 'x-pingback' header is returned as expected.
    544                   *
    545                   * Uses wp_remote_get() instead of wp_remote_head() because web servers
    546                   * can block head requests.
    547                   */
     542                 * Send a request to the site, and check whether
     543                 * the 'x-pingback' header is returned as expected.
     544                 *
     545                 * Uses wp_remote_get() instead of wp_remote_head() because web servers
     546                 * can block head requests.
     547                 */
    548548                $response          = wp_remote_get( $test_url, array( 'timeout' => 5 ) );
    549549                $x_pingback_header = wp_remote_retrieve_header( $response, 'x-pingback' );
Note: See TracChangeset for help on using the changeset viewer.