Make WordPress Core

Changeset 956 for trunk/wp-login.php


Ignore:
Timestamp:
03/01/2004 06:13:32 AM (21 years ago)
Author:
saxmatt
Message:

Migration to get_settings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-login.php

    r955 r956  
    163163<head>
    164164    <title>WordPress &rsaquo; 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'); ?>" />
    166166    <link rel="stylesheet" href="<?php echo get_settings('siteurl'); ?>/wp-admin/wp-admin.css" type="text/css" />
    167167    <script type="text/javascript">
     
    214214    $message .= 'Login at: ' . get_settings('siteurl') . '/wp-login.php';
    215215
    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);
    217217
    218218    if ($m == false) {
     
    224224        <a href='wp-login.php' title='Check your email first, of course'>Click here to login!</a></p>";
    225225        // 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");
    227227        die();
    228228    }
     
    267267<head>
    268268    <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'); ?>" />
    270270    <link rel="stylesheet" href="<?php echo get_settings('siteurl'); ?>/wp-admin/wp-admin.css" type="text/css" />
    271271    <script type="text/javascript">
Note: See TracChangeset for help on using the changeset viewer.