Make WordPress Core

Ticket #42537: 42537.2.diff

File 42537.2.diff, 1.8 KB (added by pratikkry, 6 years ago)

deprecate login_headertitle filter and remove $login_header_title

  • wp-login.php

     
    115115
    116116        if ( is_multisite() ) {
    117117                $login_header_url   = network_home_url();
    118                 $login_header_title = get_network()->site_name;
    119118        } else {
    120119                $login_header_url   = __( 'https://wordpress.org/' );
    121                 $login_header_title = __( 'Powered by WordPress' );
    122120        }
    123121
    124122        /**
     
    130128         */
    131129        $login_header_url = apply_filters( 'login_headerurl', $login_header_url );
    132130
    133         /**
    134          * Filters the title attribute of the header logo above login form.
    135          *
    136          * @since 2.1.0
    137          *
    138          * @param string $login_header_title Login header logo title attribute.
    139          */
    140         $login_header_title = apply_filters( 'login_headertitle', $login_header_title );
    141 
    142131        /*
    143          * To match the URL/title set above, Multisite sites have the blog name,
    144          * while single sites get the header title.
     132         * To match the URL set above, Multisite sites have the blog name,
     133         * while single sites get the WordPress attribution.
    145134         */
    146135        if ( is_multisite() ) {
    147136                $login_header_text = get_bloginfo( 'name', 'display' );
    148137        } else {
    149                 $login_header_text = $login_header_title;
     138                $login_header_text = __( 'Powered by WordPress' );
    150139        }
    151140
    152141        $classes = array( 'login-action-' . $action, 'wp-core-ui' );
     
    187176        do_action( 'login_header' );
    188177        ?>
    189178        <div id="login">
    190                 <h1><a href="<?php echo esc_url( $login_header_url ); ?>" title="<?php echo esc_attr( $login_header_title ); ?>" tabindex="-1"><?php echo $login_header_text; ?></a></h1>
     179                <h1><a href="<?php echo esc_url( $login_header_url ); ?>" tabindex="-1"><?php echo $login_header_text; ?></a></h1>
    191180        <?php
    192181
    193         unset( $login_header_url, $login_header_title );
     182        unset( $login_header_url );
    194183
    195184        /**
    196185         * Filters the message to display above the login form.