Make WordPress Core


Ignore:
Timestamp:
03/20/2021 06:28:32 PM (4 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Add a space before / character in some self-closing HTML tags.

While this has no effect on the code, it fixes a minor inconsistency with the rest of core.

Props laxman-prajapati.
Fixes #52870.

File:
1 edited

Legend:

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

    r50401 r50556  
    12031203function the_embed_site_title() {
    12041204    $site_title = sprintf(
    1205         '<a href="%s" target="_top"><img src="%s" srcset="%s 2x" width="32" height="32" alt="" class="wp-embed-site-icon"/><span>%s</span></a>',
     1205        '<a href="%s" target="_top"><img src="%s" srcset="%s 2x" width="32" height="32" alt="" class="wp-embed-site-icon" /><span>%s</span></a>',
    12061206        esc_url( home_url() ),
    12071207        esc_url( get_site_icon_url( 32, includes_url( 'images/w-logo-blue.png' ) ) ),
Note: See TracChangeset for help on using the changeset viewer.