Ticket #34625: 34625.4.diff
File 34625.4.diff, 1.1 KB (added by , 8 years ago) |
---|
-
src/wp-login.php
100 100 $login_header_url = network_home_url(); 101 101 $login_header_title = get_network()->site_name; 102 102 } else { 103 $login_header_url = __( 'https://wordpress.org/');104 $login_header_title = __( 'Powered by WordPress' );103 $login_header_url = home_url(); 104 $login_header_title = get_bloginfo( 'name' ); 105 105 } 106 106 107 107 /** … … 158 158 do_action( 'login_header' ); 159 159 ?> 160 160 <div id="login"> 161 <h1><a href="<?php echo esc_url( $login_header_url ); ?>" t itle="<?php echo esc_attr( $login_header_title ); ?>" tabindex="-1"><?php bloginfo( 'name' ); ?></a></h1>161 <h1><a href="<?php echo esc_url( $login_header_url ); ?>" tabindex="-1"><?php echo esc_html( $login_header_title ); ?></a></h1> 162 162 <?php 163 163 164 164 unset( $login_header_url, $login_header_title ); … … 358 358 359 359 /** 360 360 * Filters the message body of the password reset mail. 361 * 361 * 362 362 * If the filtered message is empty, the password reset email will not be sent. 363 363 * 364 364 * @since 2.8.0