Changeset 956 for trunk/wp-login.php
- Timestamp:
- 03/01/2004 06:13:32 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-login.php
r955 r956 163 163 <head> 164 164 <title>WordPress › Lost password ?</title> 165 <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $blog_charset; ?>" />165 <meta http-equiv="Content-Type" content="text/html; charset=<?php echo get_settings('blog_charset'); ?>" /> 166 166 <link rel="stylesheet" href="<?php echo get_settings('siteurl'); ?>/wp-admin/wp-admin.css" type="text/css" /> 167 167 <script type="text/javascript"> … … 214 214 $message .= 'Login at: ' . get_settings('siteurl') . '/wp-login.php'; 215 215 216 $m = mail($user_email, "[$blogname] Your weblog's login/password", $message);216 $m = mail($user_email, '[' . get_settings('blogname') . "] Your weblog's login/password", $message); 217 217 218 218 if ($m == false) { … … 224 224 <a href='wp-login.php' title='Check your email first, of course'>Click here to login!</a></p>"; 225 225 // send a copy of password change notification to the admin 226 mail($admin_email, "[$blogname] Password Lost/Change", "Password Lost and Changed for user: $user_login");226 mail($admin_email, '[' . get_settings('blogname') . "] Password Lost/Change", "Password Lost and Changed for user: $user_login"); 227 227 die(); 228 228 } … … 267 267 <head> 268 268 <title>WordPress > <?php bloginfo('name') ?> > Login form</title> 269 <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $blog_charset; ?>" />269 <meta http-equiv="Content-Type" content="text/html; charset=<?php echo get_settings('blog_charset'); ?>" /> 270 270 <link rel="stylesheet" href="<?php echo get_settings('siteurl'); ?>/wp-admin/wp-admin.css" type="text/css" /> 271 271 <script type="text/javascript">
Note: See TracChangeset
for help on using the changeset viewer.