diff --git a/wp-login.php b/wp-login.php
index e02208a..35d16f4 100644
|
a
|
b
|
if ( force_ssl_admin() && ! is_ssl() ) { |
| 25 | 25 | /** |
| 26 | 26 | * Output the login page header. |
| 27 | 27 | * |
| 28 | | * @param string $title Optional. WordPress login Page title to display in the `<title>` element. |
| 29 | | * Default 'Log In'. |
| 30 | | * @param string $message Optional. Message to display in header. Default empty. |
| 31 | | * @param WP_Error $wp_error Optional. The error to pass. Default empty. |
| | 28 | * @param string $title Optional. WordPress login Page title to display in the `<title>` element. |
| | 29 | * Default 'Log In'. |
| | 30 | * @param string $message Optional. Message to display in header. Default empty. |
| | 31 | * @param string|WP_Error $wp_error Optional. The error to pass. Default empty. |
| 32 | 32 | */ |
| 33 | 33 | function login_header( $title = 'Log In', $message = '', $wp_error = '' ) { |
| 34 | 34 | global $error, $interim_login, $action; |
| … |
… |
function login_header( $title = 'Log In', $message = '', $wp_error = '' ) { |
| 38 | 38 | |
| 39 | 39 | add_action( 'login_head', 'wp_login_viewport_meta' ); |
| 40 | 40 | |
| 41 | | if ( empty( $wp_error ) ) { |
| | 41 | if ( ! is_wp_error( $wp_error ) ) { |
| 42 | 42 | $wp_error = new WP_Error(); |
| 43 | 43 | } |
| 44 | 44 | |