The About page has a <div> that doesn't close. Also, <hr>s should self-close. hackificator complains about these things.

See #27881.


git-svn-id: https://develop.svn.wordpress.org/trunk@28477 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Scott Taylor 2014-05-18 20:32:58 +00:00
parent b5fdb2dc06
commit f083cc4e9b

View File

@ -67,7 +67,7 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
</div>
</div>
<hr>
<hr />
<div class="feature-section col two-col">
<div class="col-1">
@ -172,7 +172,7 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
</div>
</div>
<hr>
<hr />
<div class="changelog customize">
<div class="feature-section col two-col">
@ -202,7 +202,7 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
</div>
</div>
<hr>
<hr />
<div class="changelog under-the-hood">
<h3><?php _e( 'Under the Hood' ); ?></h3>
@ -229,7 +229,7 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
</div>
</div>
<hr>
<hr />
<div class="return-to-dashboard">
<?php if ( current_user_can( 'update_core' ) && isset( $_GET['updated'] ) ) : ?>
@ -241,6 +241,8 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
is_blog_admin() ? _e( 'Go to Dashboard &rarr; Home' ) : _e( 'Go to Dashboard' ); ?></a>
</div>
</div>
</div>
<?php