Make WordPress Core


Ignore:
Timestamp:
03/20/2021 06:28:32 PM (5 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-admin/includes/ajax-actions.php

    r50390 r50556  
    36993699
    37003700        foreach ( $mce_styles as $style ) {
    3701             $styles .= sprintf( '<link rel="stylesheet" href="%s"/>', $style );
     3701            $styles .= sprintf( '<link rel="stylesheet" href="%s" />', $style );
    37023702        }
    37033703
Note: See TracChangeset for help on using the changeset viewer.