Make WordPress Core

Changeset 2321 for trunk/wp-register.php


Ignore:
Timestamp:
02/14/2005 04:36:57 AM (20 years ago)
Author:
saxmatt
Message:

html_type to allow for true XHTML.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-register.php

    r2245 r2321  
    8989<head>
    9090    <title>WordPress &raquo; <?php _e('Registration Complete') ?></title>
    91     <meta http-equiv="Content-Type" content="text/html; charset=<?php echo get_settings('blog_charset'); ?>" />
     91    <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_settings('blog_charset'); ?>" />   
    9292    <link rel="stylesheet" href="wp-admin/wp-admin.css" type="text/css" />
    9393    <style type="text/css">
     
    119119<head>
    120120    <title>WordPress &raquo; <?php _e('Registration Currently Disabled') ?></title>
    121     <meta http-equiv="Content-Type" content="text/html; charset=<?php echo get_settings('blog_charset'); ?>">
     121    <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_settings('blog_charset'); ?>">
    122122    <link rel="stylesheet" href="wp-admin/wp-admin.css" type="text/css">
    123123</head>
     
    145145<head>
    146146    <title>WordPress &raquo; <?php _e('Registration Form') ?></title>
    147     <meta http-equiv="Content-Type" content="text/html; charset=<?php echo get_settings('blog_charset'); ?>" />
     147    <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_settings('blog_charset'); ?>" />
    148148    <link rel="stylesheet" href="wp-admin/wp-admin.css" type="text/css" />
    149149    <style type="text/css">
Note: See TracChangeset for help on using the changeset viewer.