From d12b5a5b98f9ea53d4691f3e276180b94978bca7 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 2 Oct 2017 22:29:55 +0000 Subject: [PATCH] Login and Registration: Make the order of `` tag parts on login page consistent with the rest of admin pages. Props nishitlangaliya, henry.wright. Fixes #40814. git-svn-id: https://develop.svn.wordpress.org/trunk@41690 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-login.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-login.php b/src/wp-login.php index e2376651d1..3db48622e7 100644 --- a/src/wp-login.php +++ b/src/wp-login.php @@ -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; ?> + <?php echo $title . $separator . get_bloginfo( 'name', 'display' ); ?>