Make WordPress Core


Ignore:
Timestamp:
11/26/2017 11:56:25 PM (7 years ago)
Author:
pento
Message:

General: Fix some precision alignment formatting warnings.

The WPCS WordPress.WhiteSpace.PrecisionAlignment rule throws warnings for a bunch of code that will likely cause issues for wpcbf. Fixing these manually beforehand gives us better auto-fixed results later.

See #41057.

File:
1 edited

Legend:

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

    r42201 r42228  
    381381    $timezone_string = '';
    382382    $gmt_offset = 0;
    383     /* translators: default GMT offset or timezone string. Must be either a valid offset (-12 to 14)
    384        or a valid timezone string (America/New_York). See https://secure.php.net/manual/en/timezones.php
    385        for all timezone strings supported by PHP.
    386     */
     383    /*
     384     * translators: default GMT offset or timezone string. Must be either a valid offset (-12 to 14)
     385     * or a valid timezone string (America/New_York). See https://secure.php.net/manual/en/timezones.php
     386     * for all timezone strings supported by PHP.
     387     */
    387388    $offset_or_tz = _x( '0', 'default GMT offset or timezone string' );
    388389    if ( is_numeric( $offset_or_tz ) )
Note: See TracChangeset for help on using the changeset viewer.