Make WordPress Core

Changeset 880


Ignore:
Timestamp:
02/17/2004 02:29:20 AM (21 years ago)
Author:
michelvaldrighi
Message:

now using instead of iso-8859-1

Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/index.php

    r873 r880  
    1212    <title><?php bloginfo('name'); ?><?php wp_title(); ?></title>
    1313   
    14     <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
     14    <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $blog_charset; ?>" />
    1515    <meta name="generator" content="WordPress <?php echo $wp_version; ?>" /> <!-- leave this for stats -->
    1616
  • trunk/wp-comments-popup.php

    r744 r880  
    1111    <title><?php echo $blogname ?> - Comments on "<?php the_title() ?>"</title>
    1212
    13     <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
     13    <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $blog_charset; ?>" />
    1414    <style type="text/css" media="screen">
    1515        @import url( wp-layout.css );
  • trunk/wp-login.php

    r857 r880  
    163163<head>
    164164    <title>WordPress &rsaquo; Lost password ?</title>
    165     <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
     165    <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $blog_charset; ?>" />
    166166    <link rel="stylesheet" href="<?php echo $siteurl; ?>/wp-admin/wp-admin.css" type="text/css" />
    167167    <script type="text/javascript">
     
    267267<head>
    268268    <title>WordPress > <?php bloginfo('name') ?> > Login form</title>
    269     <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
     269    <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $blog_charset; ?>" />
    270270    <link rel="stylesheet" href="<?php echo $siteurl; ?>/wp-admin/wp-admin.css" type="text/css" />
    271271    <script type="text/javascript">
  • trunk/wp-register.php

    r856 r880  
    114114<head>
    115115    <title>WordPress &raquo; Registration Complete</title>
    116     <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> 
     116    <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $blog_charset; ?>" />   
    117117    <link rel="stylesheet" href="wp-admin/wp-admin.css" type="text/css" />
    118118</head>
     
    142142<head>
    143143    <title>WordPress &raquo; Registration Currently Disabled</title>
    144     <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
     144    <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $blog_charset; ?>">
    145145    <link rel="stylesheet" href="wp-admin/wp-admin.css" type="text/css">
    146146</head>
     
    168168<head>
    169169    <title>WordPress &raquo; Registration Form</title>
    170     <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
     170    <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $blog_charset; ?>" />
    171171    <link rel="stylesheet" href="wp-admin/wp-admin.css" type="text/css" />
    172172</head>
  • trunk/wp.php

    r628 r880  
    88  <title><?php bloginfo('name') ?><?php single_post_title(' :: ') ?><?php single_cat_title(' :: ') ?><?php single_month_title(' :: ') ?></title>
    99  <!-- Change charset if needed(?)  But please do not remove this metatag -->
    10   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
     10  <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $blog_charset; ?>" />
    1111  <meta name="generator" content="WordPress <?php $wp_version ?>" /> <!-- leave this for stats -->
    1212  <meta http-equiv="reply-to" content="you@somewhere.zzz" />
Note: See TracChangeset for help on using the changeset viewer.