Login and Registration: Make the order of `<title>` tag parts on login page consistent with the rest of admin pages.

Props nishitlangaliya, henry.wright.
Fixes #40814.
Built from https://develop.svn.wordpress.org/trunk@41690


git-svn-id: http://core.svn.wordpress.org/trunk@41524 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2017-10-02 22:30:46 +00:00
parent df0958697a
commit 63402326c1
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.9-alpha-41689';
$wp_version = '4.9-alpha-41690';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.

View File

@ -66,7 +66,7 @@ function login_header( $title = 'Log In', $message = '', $wp_error = '' ) {
<!--<![endif]-->
<head>
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<title><?php echo get_bloginfo( 'name', 'display' ) . $separator . $title; ?></title>
<title><?php echo $title . $separator . get_bloginfo( 'name', 'display' ); ?></title>
<?php
wp_enqueue_style( 'login' );