Make WordPress Core


Ignore:
Timestamp:
03/12/2019 10:56:44 PM (7 years ago)
Author:
SergeyBiryukov
Message:

PHPCS: Fix errors introduced in [44833].

Merges [44858] to the 5.1 branch.

Location:
branches/5.1
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/5.1

  • branches/5.1/src/wp-includes/formatting.php

    r44834 r44859  
    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.