Changeset 880
- Timestamp:
- 02/17/2004 02:29:20 AM (21 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/index.php
r873 r880 12 12 <title><?php bloginfo('name'); ?><?php wp_title(); ?></title> 13 13 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; ?>" /> 15 15 <meta name="generator" content="WordPress <?php echo $wp_version; ?>" /> <!-- leave this for stats --> 16 16 -
trunk/wp-comments-popup.php
r744 r880 11 11 <title><?php echo $blogname ?> - Comments on "<?php the_title() ?>"</title> 12 12 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; ?>" /> 14 14 <style type="text/css" media="screen"> 15 15 @import url( wp-layout.css ); -
trunk/wp-login.php
r857 r880 163 163 <head> 164 164 <title>WordPress › 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; ?>" /> 166 166 <link rel="stylesheet" href="<?php echo $siteurl; ?>/wp-admin/wp-admin.css" type="text/css" /> 167 167 <script type="text/javascript"> … … 267 267 <head> 268 268 <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; ?>" /> 270 270 <link rel="stylesheet" href="<?php echo $siteurl; ?>/wp-admin/wp-admin.css" type="text/css" /> 271 271 <script type="text/javascript"> -
trunk/wp-register.php
r856 r880 114 114 <head> 115 115 <title>WordPress » 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; ?>" /> 117 117 <link rel="stylesheet" href="wp-admin/wp-admin.css" type="text/css" /> 118 118 </head> … … 142 142 <head> 143 143 <title>WordPress » 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; ?>"> 145 145 <link rel="stylesheet" href="wp-admin/wp-admin.css" type="text/css"> 146 146 </head> … … 168 168 <head> 169 169 <title>WordPress » 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; ?>" /> 171 171 <link rel="stylesheet" href="wp-admin/wp-admin.css" type="text/css" /> 172 172 </head> -
trunk/wp.php
r628 r880 8 8 <title><?php bloginfo('name') ?><?php single_post_title(' :: ') ?><?php single_cat_title(' :: ') ?><?php single_month_title(' :: ') ?></title> 9 9 <!-- 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; ?>" /> 11 11 <meta name="generator" content="WordPress <?php $wp_version ?>" /> <!-- leave this for stats --> 12 12 <meta http-equiv="reply-to" content="you@somewhere.zzz" />
Note: See TracChangeset
for help on using the changeset viewer.