Make WordPress Core

Ticket #45777: 45777.patch

File 45777.patch, 1.1 KB (added by mukesh27, 6 years ago)

Remove description as system does not contain those global variables any where so it is better to remove description for now.

  • src/wp-login.php

     
    2727 *
    2828 * @since 2.1.0
    2929 *
    30  * @param string   $title    Optional. WordPress login Page title to display in the `<title>` element.
    31  *                           Default 'Log In'.
    32  * @param string   $message  Optional. Message to display in header. Default empty.
    33  * @param WP_Error $wp_error Optional. The error to pass. Default is a WP_Error instance.
     30 * @global string  $error
     31 * @global string  $interim_login
     32 * @global string  $action
     33 *
     34 * @param string   $title         Optional. WordPress login Page title to display in the `<title>` element.
     35 *                                Default 'Log In'.
     36 * @param string   $message       Optional. Message to display in header. Default empty.
     37 * @param WP_Error $wp_error      Optional. The error to pass. Default is a WP_Error instance.
    3438 */
    3539function login_header( $title = 'Log In', $message = '', $wp_error = null ) {
    3640        global $error, $interim_login, $action;