mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-22 17:18:32 +01:00
now using instead of iso-8859-1
git-svn-id: http://svn.automattic.com/wordpress/trunk@880 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
9407f360c9
commit
0d178ed361
@ -11,7 +11,7 @@ require('wp-blog-header.php');
|
||||
<head>
|
||||
<title><?php bloginfo('name'); ?><?php wp_title(); ?></title>
|
||||
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $blog_charset; ?>" />
|
||||
<meta name="generator" content="WordPress <?php echo $wp_version; ?>" /> <!-- leave this for stats -->
|
||||
|
||||
<style type="text/css" media="screen">
|
||||
|
@ -10,7 +10,7 @@ foreach ($posts as $post) { start_wp();
|
||||
<head>
|
||||
<title><?php echo $blogname ?> - Comments on "<?php the_title() ?>"</title>
|
||||
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $blog_charset; ?>" />
|
||||
<style type="text/css" media="screen">
|
||||
@import url( wp-layout.css );
|
||||
body { margin: 3px; }
|
||||
|
@ -162,7 +162,7 @@ case 'lostpassword':
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>WordPress › Lost password ?</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $blog_charset; ?>" />
|
||||
<link rel="stylesheet" href="<?php echo $siteurl; ?>/wp-admin/wp-admin.css" type="text/css" />
|
||||
<script type="text/javascript">
|
||||
function focusit() {
|
||||
@ -266,7 +266,7 @@ default:
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>WordPress > <?php bloginfo('name') ?> > Login form</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $blog_charset; ?>" />
|
||||
<link rel="stylesheet" href="<?php echo $siteurl; ?>/wp-admin/wp-admin.css" type="text/css" />
|
||||
<script type="text/javascript">
|
||||
function focusit() {
|
||||
|
@ -113,7 +113,7 @@ case 'register':
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>WordPress » Registration Complete</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $blog_charset; ?>" />
|
||||
<link rel="stylesheet" href="wp-admin/wp-admin.css" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
@ -141,7 +141,7 @@ case 'disabled':
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>WordPress » Registration Currently Disabled</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $blog_charset; ?>">
|
||||
<link rel="stylesheet" href="wp-admin/wp-admin.css" type="text/css">
|
||||
</head>
|
||||
|
||||
@ -167,7 +167,7 @@ default:
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>WordPress » Registration Form</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $blog_charset; ?>" />
|
||||
<link rel="stylesheet" href="wp-admin/wp-admin.css" type="text/css" />
|
||||
</head>
|
||||
|
||||
|
2
wp.php
2
wp.php
@ -7,7 +7,7 @@ require_once("wp-blog-header.php");
|
||||
<head>
|
||||
<title><?php bloginfo('name') ?><?php single_post_title(' :: ') ?><?php single_cat_title(' :: ') ?><?php single_month_title(' :: ') ?></title>
|
||||
<!-- Change charset if needed(?) But please do not remove this metatag -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $blog_charset; ?>" />
|
||||
<meta name="generator" content="WordPress <?php $wp_version ?>" /> <!-- leave this for stats -->
|
||||
<meta http-equiv="reply-to" content="you@somewhere.zzz" />
|
||||
<link rel="alternate" type="text/xml" title="RDF" href="<?php bloginfo('rdf_url'); ?>" />
|
||||
|
Loading…
Reference in New Issue
Block a user