diff --git a/src/wp-admin/includes/nav-menu.php b/src/wp-admin/includes/nav-menu.php
index ad8b04cff6..0e09d31148 100644
a
|
b
|
function wp_nav_menu_item_post_type_meta_box( $data_object, $box ) { |
524 | 524 | </li> |
525 | 525 | </ul><!-- .posttype-tabs --> |
526 | 526 | |
527 | | <div id="tabs-panel-posttype-<?php echo $post_type_name; ?>-most-recent" class="tabs-panel <?php echo ( 'most-recent' === $current_tab ? 'tabs-panel-active' : 'tabs-panel-inactive' ); ?>" role="region" aria-label="<?php _e( 'Most Recent' ); ?>" tabindex="0"> |
| 527 | <div id="tabs-panel-posttype-<?php echo $post_type_name; ?>-most-recent" class="tabs-panel <?php echo ( 'most-recent' === $current_tab ? 'tabs-panel-active' : 'tabs-panel-inactive' ); ?>" role="region" aria-label="<?php esc_attr_e( 'Most Recent' ); ?>" tabindex="0"> |
528 | 528 | <ul id="<?php echo $post_type_name; ?>checklist-most-recent" class="categorychecklist form-no-clear"> |
529 | 529 | <?php |
530 | 530 | $recent_args = array_merge( |
diff --git a/src/wp-admin/nav-menus.php b/src/wp-admin/nav-menus.php
index e95bb68a90..28dbc8219f 100644
a
|
b
|
require_once ABSPATH . 'wp-admin/admin-header.php'; |
1040 | 1040 | <input type="checkbox" id="bulk-select-switcher-bottom" name="bulk-select-switcher-top" class="bulk-select-switcher"> |
1041 | 1041 | <span class="bulk-select-button-label"><?php _e( 'Bulk Select' ); ?></span> |
1042 | 1042 | </label> |
1043 | | <input type="button" class="deletion menu-items-delete disabled" value="<?php _e( 'Remove Selected Items' ); ?>"> |
| 1043 | <input type="button" class="deletion menu-items-delete disabled" value="<?php esc_attr_e( 'Remove Selected Items' ); ?>"> |
1044 | 1044 | <div id="pending-menu-items-to-delete"> |
1045 | 1045 | <p><?php _e( 'List of menu items selected for deletion:' ); ?></p> |
1046 | 1046 | <ul></ul> |
diff --git a/src/wp-admin/widgets-form.php b/src/wp-admin/widgets-form.php
index df4efdba90..c9c7bf203f 100644
a
|
b
|
if ( isset( $_GET['editwidget'] ) && $_GET['editwidget'] ) { |
332 | 332 | <div class="widget-control-actions"> |
333 | 333 | <div class="alignleft"> |
334 | 334 | <?php if ( ! isset( $_GET['addnew'] ) ) : ?> |
335 | | <input type="submit" name="removewidget" id="removewidget" class="button-link button-link-delete widget-control-remove" value="<?php _e( 'Delete' ); ?>" /> |
| 335 | <input type="submit" name="removewidget" id="removewidget" class="button-link button-link-delete widget-control-remove" value="<?php esc_attr_e( 'Delete' ); ?>" /> |
336 | 336 | <span class="widget-control-close-wrapper"> |
337 | | | <a href="widgets.php" class="button-link widget-control-close"><?php _e( 'Cancel' ); ?></a> |
| 337 | <a href="widgets.php" class="button-link widget-control-close"><?php _e( 'Cancel' ); ?></a> |
338 | 338 | </span> |
339 | 339 | <?php else : ?> |
340 | 340 | <a href="widgets.php" class="button-link widget-control-close"><?php _e( 'Cancel' ); ?></a> |