diff --git a/src/wp-login.php b/src/wp-login.php
index e02208a..d83c153 100644
a
|
b
|
if ( force_ssl_admin() && ! is_ssl() ) { |
28 | 28 | * @param string $title Optional. WordPress login Page title to display in the `<title>` element. |
29 | 29 | * Default 'Log In'. |
30 | 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. |
| 31 | * @param WP_Error $wp_error Optional. The error to pass. Default null. |
32 | 32 | */ |
33 | | function login_header( $title = 'Log In', $message = '', $wp_error = '' ) { |
| 33 | function login_header( $title = 'Log In', $message = '', $wp_error = null ) { |
34 | 34 | global $error, $interim_login, $action; |
35 | 35 | |
36 | 36 | // Don't index any of these forms |
… |
… |
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 | |