Make WordPress Core

Changeset 9804 for trunk/wp-login.php


Ignore:
Timestamp:
11/20/2008 03:23:15 AM (16 years ago)
Author:
markjaquith
Message:

"Login" is a noun. The verb is "Log In"

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-login.php

    r9800 r9804  
    2626 * Outputs the header for the login page.
    2727 *
    28  * @uses do_action() Calls the 'login_head' for outputting HTML in the Login
     28 * @uses do_action() Calls the 'login_head' for outputting HTML in the Log In
    2929 *      header.
    3030 * @uses apply_filters() Calls 'login_headerurl' for the top login link.
     
    3434 * @uses $error The error global, which is checked for displaying errors.
    3535 *
    36  * @param string $title Optional. WordPress Login Page title to display in
     36 * @param string $title Optional. WordPress Log In Page title to display in
    3737 *      <title/> element.
    3838 * @param string $message Optional. Message to display in header.
    3939 * @param WP_Error $wp_error Optional. WordPress Error Object
    4040 */
    41 function login_header($title = 'Login', $message = '', $wp_error = '') {
     41function login_header($title = 'Log In', $message = '', $wp_error = '') {
    4242    global $error;
    4343
     
    457457    elseif  ( isset($_GET['checkemail']) && 'registered' == $_GET['checkemail'] )   $errors->add('registered', __('Registration complete. Please check your e-mail.'), 'message');
    458458
    459     login_header(__('Login'), '', $errors);
     459    login_header(__('Log In'), '', $errors);
    460460
    461461    if ( isset($_POST['log']) )
Note: See TracChangeset for help on using the changeset viewer.