From 82c596594bfd62cdde68d40688906a9cf19a301e Mon Sep 17 00:00:00 2001 From: Andrea Fercia Date: Sun, 17 Jan 2016 16:03:25 +0000 Subject: [PATCH] After [36333] correctly use `esc_attr()` instead of `esc_attr__()`. See #35313. Built from https://develop.svn.wordpress.org/trunk@36334 git-svn-id: http://core.svn.wordpress.org/trunk@36301 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/class-wp-posts-list-table.php | 6 +++--- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-admin/includes/class-wp-posts-list-table.php b/wp-admin/includes/class-wp-posts-list-table.php index 02cb433cbf..5422e5eefe 100644 --- a/wp-admin/includes/class-wp-posts-list-table.php +++ b/wp-admin/includes/class-wp-posts-list-table.php @@ -1199,7 +1199,7 @@ class WP_Posts_List_Table extends WP_List_Table { '%s', wp_nonce_url( admin_url( sprintf( $post_type_object->_edit_link . '&action=untrash', $post->ID ) ), 'untrash-post_' . $post->ID ), /* translators: %s: post title */ - esc_attr__( sprintf( __( 'Restore “%s” from the Trash' ), $title ) ), + esc_attr( sprintf( __( 'Restore “%s” from the Trash' ), $title ) ), __( 'Restore' ) ); } elseif ( EMPTY_TRASH_DAYS ) { @@ -1207,7 +1207,7 @@ class WP_Posts_List_Table extends WP_List_Table { '%s', get_delete_post_link( $post->ID ), /* translators: %s: post title */ - esc_attr__( sprintf( __( 'Move “%s” to the Trash' ), $title ) ), + esc_attr( sprintf( __( 'Move “%s” to the Trash' ), $title ) ), _x( 'Trash', 'verb' ) ); } @@ -1216,7 +1216,7 @@ class WP_Posts_List_Table extends WP_List_Table { '%s', get_delete_post_link( $post->ID, '', true ), /* translators: %s: post title */ - esc_attr__( sprintf( __( 'Delete “%s” permanently' ), $title ) ), + esc_attr( sprintf( __( 'Delete “%s” permanently' ), $title ) ), __( 'Delete Permanently' ) ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index 9d53632599..1b811f0e9d 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-1453045632755'; +$wp_version = '4.5-alpha-1453046591767'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.