diff --git a/wp-includes/version.php b/wp-includes/version.php index 1b662b4e15..3a514f437f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.6-alpha-58223'; +$wp_version = '6.6-alpha-58224'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-login.php b/wp-login.php index ced99ea11e..16faccb703 100644 --- a/wp-login.php +++ b/wp-login.php @@ -33,10 +33,10 @@ if ( force_ssl_admin() && ! is_ssl() ) { * upon successful login. * @global string $action The action that brought the visitor to the login page. * - * @param null|string $title Optional. WordPress login Page title to display in the `` element. - * Default null, which displays 'Log In'. - * @param string $message Optional. Message to display in header. Default empty. - * @param WP_Error $wp_error Optional. The error to pass. Default is a WP_Error instance. + * @param string|null $title Optional. WordPress login page title to display in the `<title>` element. + * Defaults to 'Log In'. + * @param string $message Optional. Message to display in header. Default empty. + * @param WP_Error|null $wp_error Optional. The error to pass. Defaults to a WP_Error instance. */ function login_header( $title = null, $message = '', $wp_error = null ) { global $error, $interim_login, $action;