Make WordPress Core


Ignore:
Timestamp:
06/22/2020 09:24:44 PM (4 years ago)
Author:
SergeyBiryukov
Message:

Administration: Remove the xmlns attribute on the <html> tag.

The attribute is specific to XHTML and is not needed in HTML5.

Props audrasjb, diddledan, hommealone, joyously, mukesh27, valentinbora, peterwilsoncc, SergeyBiryukov.
Fixes #49126.

File:
1 edited

Legend:

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

    r48115 r48126  
    34273427        ?>
    34283428<!DOCTYPE html>
    3429 <html xmlns="http://www.w3.org/1999/xhtml" <?php echo $dir_attr; ?>>
     3429<html <?php echo $dir_attr; ?>>
    34303430<head>
    34313431    <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $parsed_args['charset']; ?>" />
Note: See TracChangeset for help on using the changeset viewer.