Accessibility: Remove inappropriate content from the Edit Comments screen heading.
See #26601. Built from https://develop.svn.wordpress.org/trunk@39552 git-svn-id: http://core.svn.wordpress.org/trunk@39492 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c05f1dc805
commit
9d474c8206
|
@ -194,7 +194,7 @@ require_once( ABSPATH . 'wp-admin/admin-header.php' );
|
|||
?>
|
||||
|
||||
<div class="wrap">
|
||||
<h1><?php
|
||||
<h1 class="wp-heading-inline"><?php
|
||||
if ( $post_id ) {
|
||||
/* translators: %s: link to post */
|
||||
printf( __( 'Comments on “%s”' ),
|
||||
|
@ -206,7 +206,9 @@ if ( $post_id ) {
|
|||
} else {
|
||||
_e( 'Comments' );
|
||||
}
|
||||
?></h1>
|
||||
|
||||
<?php
|
||||
if ( isset($_REQUEST['s']) && strlen( $_REQUEST['s'] ) ) {
|
||||
echo '<span class="subtitle">';
|
||||
/* translators: %s: search keywords */
|
||||
|
@ -215,7 +217,9 @@ if ( isset($_REQUEST['s']) && strlen( $_REQUEST['s'] ) ) {
|
|||
);
|
||||
echo '</span>';
|
||||
}
|
||||
?></h1>
|
||||
?>
|
||||
|
||||
<hr class="wp-header-end">
|
||||
|
||||
<?php
|
||||
if ( isset( $_REQUEST['error'] ) ) {
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.8-alpha-39551';
|
||||
$wp_version = '4.8-alpha-39552';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue