Changeset 58209
- Timestamp:
- 05/27/2024 02:09:09 PM (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-login.php
r58093 r58209 35 35 * 36 36 * @param string $title Optional. WordPress login Page title to display in the `<title>` element. 37 * Default 'Log In'.37 * Default null, which displays 'Log In'. 38 38 * @param string $message Optional. Message to display in header. Default empty. 39 39 * @param WP_Error $wp_error Optional. The error to pass. Default is a WP_Error instance. 40 40 */ 41 function login_header( $title = 'Log In', $message = '', $wp_error = null ) {41 function login_header( $title = null, $message = '', $wp_error = null ) { 42 42 global $error, $interim_login, $action; 43 44 if ( null === $title ) { 45 $title = __( 'Log In' ); 46 } 43 47 44 48 // Don't index any of these forms.
Note: See TracChangeset
for help on using the changeset viewer.