Changeset 2245

Show
Ignore:
Timestamp:
02/11/05 00:51:39 (4 years ago)
Author:
saxmatt
Message:

Fix mailed password, login link - http://mosquito.wordpress.org/view.php?id=838

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-register.php

    r2216 r2245  
    7575     
    7676    $message  = __('Login') . ": $user_login\r\n"; 
    77     $message .= __('Password') . ": $new_pass\r\n"; 
     77    $message .= __('Password') . ": $password\r\n"; 
    7878    $message .= get_settings('siteurl') . '/wp-login.php'; 
    7979     
     
    8888<html xmlns="http://www.w3.org/1999/xhtml"> 
    8989<head> 
    90         <title>WordPress &raquo; <?php _e('Registration Complete') ?></title> 
     90   <title>WordPress &raquo; <?php _e('Registration Complete') ?></title> 
    9191    <meta http-equiv="Content-Type" content="text/html; charset=<?php echo get_settings('blog_charset'); ?>" />  
    9292    <link rel="stylesheet" href="wp-admin/wp-admin.css" type="text/css" /> 
     93    <style type="text/css"> 
     94    .submit { 
     95        font-size: 1.7em; 
     96    } 
     97    </style> 
    9398</head> 
    9499<body> 
     
    99104    <?php _e('Password:') ?> <strong>emailed to you</strong><br /> 
    100105    <?php _e('E-mail:') ?> <strong><?php echo $user_email; ?></strong></p> 
    101     <form action="wp-login.php" method="post" name="login"> 
    102         <input type="hidden" name="log" value="<?php echo $user_login; ?>" /> 
    103         <input type="submit" value="<?php _e('Login') ?>" name="submit" /> 
    104     </form> 
     106    <p class="submit"><a href="wp-login.php"><?php _e('Login'); ?> &raquo;</a></p> 
    105107</div> 
    106108</body>