mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-11 20:30:23 +00:00
Use one space, not two, after trailing punctuation. fixes #19537
git-svn-id: https://develop.svn.wordpress.org/trunk@19593 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -322,7 +322,7 @@ if ( isset( $_GET['updated'] ) ) {
|
||||
$menu_perms = get_site_option( 'menu_items' );
|
||||
$menu_items = apply_filters( 'mu_menu_items', array( 'plugins' => __( 'Plugins' ) ) );
|
||||
foreach ( (array) $menu_items as $key => $val ) {
|
||||
echo "<label><input type='checkbox' name='menu_items[" . $key . "]' value='1'" . ( isset( $menu_perms[$key] ) ? checked( $menu_perms[$key], '1', false ) : '' ) . " /> " . esc_html( $val ) . "</label><br/>";
|
||||
echo "<label><input type='checkbox' name='menu_items[" . $key . "]' value='1'" . ( isset( $menu_perms[$key] ) ? checked( $menu_perms[$key], '1', false ) : '' ) . " /> " . esc_html( $val ) . "</label><br/>";
|
||||
}
|
||||
?>
|
||||
</td>
|
||||
|
||||
@@ -108,7 +108,7 @@ $tabs = array(
|
||||
);
|
||||
foreach ( $tabs as $tab_id => $tab ) {
|
||||
$class = ( $tab['url'] == $pagenow ) ? ' nav-tab-active' : '';
|
||||
echo '<a href="' . $tab['url'] . '?id=' . $id .'" class="nav-tab' . $class . '">' . esc_html( $tab['label'] ) . '</a>';
|
||||
echo '<a href="' . $tab['url'] . '?id=' . $id .'" class="nav-tab' . $class . '">' . esc_html( $tab['label'] ) . '</a>';
|
||||
}
|
||||
?>
|
||||
</h3>
|
||||
|
||||
@@ -98,7 +98,7 @@ $tabs = array(
|
||||
);
|
||||
foreach ( $tabs as $tab_id => $tab ) {
|
||||
$class = ( $tab['url'] == $pagenow ) ? ' nav-tab-active' : '';
|
||||
echo '<a href="' . $tab['url'] . '?id=' . $id .'" class="nav-tab' . $class . '">' . esc_html( $tab['label'] ) . '</a>';
|
||||
echo '<a href="' . $tab['url'] . '?id=' . $id .'" class="nav-tab' . $class . '">' . esc_html( $tab['label'] ) . '</a>';
|
||||
}
|
||||
?>
|
||||
</h3>
|
||||
|
||||
@@ -152,7 +152,7 @@ $tabs = array(
|
||||
);
|
||||
foreach ( $tabs as $tab_id => $tab ) {
|
||||
$class = ( $tab['url'] == $pagenow ) ? ' nav-tab-active' : '';
|
||||
echo '<a href="' . $tab['url'] . '?id=' . $id .'" class="nav-tab' . $class . '">' . esc_html( $tab['label'] ) . '</a>';
|
||||
echo '<a href="' . $tab['url'] . '?id=' . $id .'" class="nav-tab' . $class . '">' . esc_html( $tab['label'] ) . '</a>';
|
||||
}
|
||||
?>
|
||||
</h3><?php
|
||||
|
||||
@@ -186,7 +186,7 @@ $tabs = array(
|
||||
);
|
||||
foreach ( $tabs as $tab_id => $tab ) {
|
||||
$class = ( $tab['url'] == $pagenow ) ? ' nav-tab-active' : '';
|
||||
echo '<a href="' . $tab['url'] . '?id=' . $id .'" class="nav-tab' . $class . '">' . esc_html( $tab['label'] ) . '</a>';
|
||||
echo '<a href="' . $tab['url'] . '?id=' . $id .'" class="nav-tab' . $class . '">' . esc_html( $tab['label'] ) . '</a>';
|
||||
}
|
||||
?>
|
||||
</h3><?php
|
||||
|
||||
Reference in New Issue
Block a user