Make WordPress Core

Ticket #45777: 45777_ProperFormat.diff

File 45777_ProperFormat.diff, 809 bytes (added by faisal03, 6 years ago)

The previous attachment 45777.diff was not in a proper format so uploaded this one.

  • src/wp-login.php

     
    2727 *
    2828 * @since 2.1.0
    2929 *
     30 * @global string $error Error when false is returned
     31 * @global string $interim_login
     32 * @global string $action The action to take.
     33 *
    3034 * @param string   $title    Optional. WordPress login Page title to display in the `<title>` element.
    3135 *                           Default 'Log In'.
    3236 * @param string   $message  Optional. Message to display in header. Default empty.
    3337 * @param WP_Error $wp_error Optional. The error to pass. Default is a WP_Error instance.
     38 *
    3439 */
    3540function login_header( $title = 'Log In', $message = '', $wp_error = null ) {
    3641        global $error, $interim_login, $action;