Skip to content

Commit 2bc4ec0

Browse files
Grouped backports to the 4.7 branch.
- Posts, Post Types: Escape output within `the_meta()`. - General: Ensure bookmark query limits are numeric. - Plugins: Escape output in error messages. Merges [53958-53960] to the 4.7 branch. Props tykoted, martinkrcho, xknown, dd32, peterwilsoncc, paulkevan, timothyblynjacobs. git-svn-id: https://develop.svn.wordpress.org/branches/4.7@53976 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 3735095 commit 2bc4ec0

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/wp-admin/plugins.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@
437437
/* translators: 1: plugin file 2: error message */
438438
__( 'The plugin %1$s has been <strong>deactivated</strong> due to an error: %2$s' ),
439439
'<code>' . esc_html( $plugin_file ) . '</code>',
440-
$error->get_error_message() );
440+
esc_html( $error->get_error_message() ) );
441441
echo '</p></div>';
442442
}
443443
}
@@ -472,7 +472,7 @@
472472
delete_transient( 'plugins_delete_result_' . $user_ID );
473473

474474
if ( is_wp_error($delete_result) ) : ?>
475-
<div id="message" class="error notice is-dismissible"><p><?php printf( __('Plugin could not be deleted due to an error: %s'), $delete_result->get_error_message() ); ?></p></div>
475+
<div id="message" class="error notice is-dismissible"><p><?php printf( __('Plugin could not be deleted due to an error: %s'), esc_html( $delete_result->get_error_message() ) ); ?></p></div>
476476
<?php else : ?>
477477
<div id="message" class="updated notice is-dismissible">
478478
<p>

src/wp-includes/bookmark.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ function get_bookmarks( $args = '' ) {
282282
$query .= " $exclusions $inclusions $search";
283283
$query .= " ORDER BY $orderby $order";
284284
if ( $r['limit'] != -1 ) {
285-
$query .= ' LIMIT ' . $r['limit'];
285+
$query .= ' LIMIT ' . absint( $r['limit'] );
286286
}
287287

288288
$results = $wpdb->get_results( $query );

src/wp-includes/post-template.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -994,10 +994,10 @@ function post_custom( $key = '' ) {
994994
*
995995
* @since 1.2.0
996996
*
997-
* @internal This will probably change at some point...
998-
*
997+
* @deprecated 6.0.2 Use get_post_meta() to retrieve post meta and render manually.
999998
*/
1000999
function the_meta() {
1000+
_deprecated_function( __FUNCTION__, '6.0.2', 'get_post_meta()' );
10011001
if ( $keys = get_post_custom_keys() ) {
10021002
echo "<ul class='post-meta'>\n";
10031003
foreach ( (array) $keys as $key ) {
@@ -1016,7 +1016,7 @@ function the_meta() {
10161016
* @param string $key Meta key.
10171017
* @param string $value Meta value.
10181018
*/
1019-
echo apply_filters( 'the_meta_key', "<li><span class='post-meta-key'>$key:</span> $value</li>\n", $key, $value );
1019+
echo apply_filters( 'the_meta_key', "<li><span class='post-meta-key'>" . esc_html( $key ) . ":</span>" . esc_html( $value ) . "</li>\n", $key, $value );
10201020
}
10211021
echo "</ul>\n";
10221022
}

0 commit comments

Comments
 (0)