Changeset 9804 for trunk/wp-login.php
- Timestamp:
- 11/20/2008 03:23:15 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-login.php
r9800 r9804 26 26 * Outputs the header for the login page. 27 27 * 28 * @uses do_action() Calls the 'login_head' for outputting HTML in the Log in28 * @uses do_action() Calls the 'login_head' for outputting HTML in the Log In 29 29 * header. 30 30 * @uses apply_filters() Calls 'login_headerurl' for the top login link. … … 34 34 * @uses $error The error global, which is checked for displaying errors. 35 35 * 36 * @param string $title Optional. WordPress Log in Page title to display in36 * @param string $title Optional. WordPress Log In Page title to display in 37 37 * <title/> element. 38 38 * @param string $message Optional. Message to display in header. 39 39 * @param WP_Error $wp_error Optional. WordPress Error Object 40 40 */ 41 function login_header($title = 'Log in', $message = '', $wp_error = '') {41 function login_header($title = 'Log In', $message = '', $wp_error = '') { 42 42 global $error; 43 43 … … 457 457 elseif ( isset($_GET['checkemail']) && 'registered' == $_GET['checkemail'] ) $errors->add('registered', __('Registration complete. Please check your e-mail.'), 'message'); 458 458 459 login_header(__('Log in'), '', $errors);459 login_header(__('Log In'), '', $errors); 460 460 461 461 if ( isset($_POST['log']) )
Note: See TracChangeset
for help on using the changeset viewer.