Make WordPress Core

Changeset 44858


Ignore:
Timestamp:
03/12/2019 10:55:33 PM (5 years ago)
Author:
SergeyBiryukov
Message:

PHPCS: Fix errors introduced in [44833].

File:
1 edited

Legend:

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

    r44833 r44858  
    30233023        $html = '';
    30243024        foreach ( $atts as $name => $value ) {
    3025             $html .= "{$name}=\"" . esc_attr( $value ) . "\" ";
     3025            $html .= "{$name}=\"" . esc_attr( $value ) . '" ';
    30263026        }
    30273027        $text = trim( $html );
    30283028    }
    3029     return "<a $text rel=\"" . esc_attr( $rel ) . "\">";
     3029    return "<a $text rel=\"" . esc_attr( $rel ) . '">';
    30303030}
    30313031
Note: See TracChangeset for help on using the changeset viewer.