Index: wp-login.php
===================================================================
--- wp-login.php	(revision 19455)
+++ wp-login.php	(working copy)
@@ -79,12 +79,15 @@
 	do_action( 'login_head' ); ?>
 </head>
 <body class="login">
+	<div id="login">
+		<h1>
 <?php   if ( !is_multisite() ) { ?>
-<div id="login"><h1><a href="<?php echo esc_url( apply_filters('login_headerurl', 'http://wordpress.org/') ); ?>" title="<?php echo esc_attr( apply_filters('login_headertitle', __( 'Powered by WordPress' ) ) ); ?>"><?php bloginfo('name'); ?></a></h1>
+		<a href="<?php echo esc_url( apply_filters( 'login_headerurl', __( 'http://wordpress.org' ) ) ); ?>" title="<?php echo esc_attr( apply_filters( 'login_headertitle', __( 'Powered by WordPress' ) ) ); ?>"><?php bloginfo( 'name' ); ?></a>
 <?php   } else { ?>
-<div id="login"><h1><a href="<?php echo esc_url( apply_filters('login_headerurl', network_home_url() ) ); ?>" title="<?php echo esc_attr( apply_filters('login_headertitle', $current_site->site_name ) ); ?>"><span class="hide"><?php bloginfo('name'); ?></span></a></h1>
-<?php   }
-
+		<a href="<?php echo esc_url( apply_filters( 'login_headerurl', network_home_url() ) ); ?>" title="<?php echo esc_attr( apply_filters( 'login_headertitle', $current_site->site_name ) ); ?>"><?php bloginfo( 'name' ); ?></a>
+<?php   } ?>
+		</h1>
+<?php
 	$message = apply_filters('login_message', $message);
 	if ( !empty( $message ) ) echo $message . "\n";
 
