Make WordPress Core

Changeset 45816


Ignore:
Timestamp:
08/16/2019 12:20:58 AM (5 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: In wlwmanifest_link(), use concatenation instead of commas for echo, for consistency with rsd_link() and the rest of core.

See #47632.

File:
1 edited

Legend:

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

    r45739 r45816  
    29512951 */
    29522952function wlwmanifest_link() {
    2953     echo '<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="',
    2954         includes_url( 'wlwmanifest.xml' ), '" /> ', "\n";
     2953    echo '<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="' . includes_url( 'wlwmanifest.xml' ) . '" /> ' . "\n";
    29552954}
    29562955
Note: See TracChangeset for help on using the changeset viewer.