Make WordPress Core


Ignore:
Timestamp:
11/26/2007 09:40:00 PM (18 years ago)
Author:
ryan
Message:

Use 'Log in' instead of 'Login' for verb form. Props doug. see #5296

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/general-template.php

    r6296 r6343  
    3232function wp_loginout() {
    3333    if ( ! is_user_logged_in() )
    34         $link = '<a href="' . get_option('siteurl') . '/wp-login.php">' . __('Login') . '</a>';
     34        $link = '<a href="' . get_option('siteurl') . '/wp-login.php">' . __('Log in') . '</a>';
    3535    else
    36         $link = '<a href="' . get_option('siteurl') . '/wp-login.php?action=logout">' . __('Logout') . '</a>';
     36        $link = '<a href="' . get_option('siteurl') . '/wp-login.php?action=logout">' . __('Log out') . '</a>';
    3737
    3838    echo apply_filters('loginout', $link);
Note: See TracChangeset for help on using the changeset viewer.