Make WordPress Core


Ignore:
Timestamp:
11/26/2017 11:56:25 PM (8 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-includes/general-template.php

    r42220 r42228  
    29492949            foreach ( $atts as $attr => $value ) {
    29502950                if ( ! is_scalar( $value ) ||
    2951                      ( ! in_array( $attr, array( 'as', 'crossorigin', 'href', 'pr', 'rel', 'type' ), true ) && ! is_numeric( $attr ))
    2952                 ) {
     2951                    ( ! in_array( $attr, array( 'as', 'crossorigin', 'href', 'pr', 'rel', 'type' ), true ) && ! is_numeric( $attr )) ) {
     2952
    29532953                    continue;
    29542954                }
Note: See TracChangeset for help on using the changeset viewer.