Changeset 53983 for branches/4.0
- Timestamp:
- 08/30/2022 03:53:52 PM (3 years ago)
- Location:
- branches/4.0
- Files:
-
- 4 edited
-
. (modified) (1 prop)
-
src/wp-admin/plugins.php (modified) (2 diffs)
-
src/wp-includes/bookmark.php (modified) (1 diff)
-
src/wp-includes/post-template.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/4.0
- Property svn:mergeinfo changed
/trunk merged: 53958-53960
- Property svn:mergeinfo changed
-
branches/4.0/src/wp-admin/plugins.php
r41447 r53983 377 377 if ( !empty($invalid) ) 378 378 foreach ( $invalid as $plugin_file => $error ) 379 echo '<div id="message" class="error"><p>' . sprintf(__('The plugin <code>%s</code> has been <strong>deactivated</strong> due to an error: %s'), esc_html($plugin_file), $error->get_error_message()) . '</p></div>';379 echo '<div id="message" class="error"><p>' . sprintf(__('The plugin <code>%s</code> has been <strong>deactivated</strong> due to an error: %s'), esc_html($plugin_file), esc_html( $error->get_error_message() ) ) . '</p></div>'; 380 380 ?> 381 381 … … 403 403 404 404 if ( is_wp_error($delete_result) ) : ?> 405 <div id="message" class="error"><p><?php printf( __('Plugin could not be deleted due to an error: %s'), $delete_result->get_error_message() ); ?></p></div>405 <div id="message" class="error"><p><?php printf( __('Plugin could not be deleted due to an error: %s'), esc_html( $delete_result->get_error_message() ) ); ?></p></div> 406 406 <?php else : ?> 407 407 <div id="message" class="updated"><p><?php _e('The selected plugins have been <strong>deleted</strong>.'); ?></p></div> -
branches/4.0/src/wp-includes/bookmark.php
r29111 r53983 282 282 $query .= " ORDER BY $orderby $order"; 283 283 if ( $r['limit'] != -1 ) { 284 $query .= ' LIMIT ' . $r['limit'];284 $query .= ' LIMIT ' . absint( $r['limit'] ); 285 285 } 286 286 -
branches/4.0/src/wp-includes/post-template.php
r45963 r53983 880 880 * Display list of post custom fields. 881 881 * 882 * @internal This will probably change at some point...883 882 * @since 1.2.0 884 * @uses apply_filters() Calls 'the_meta_key' on list item HTML content, with key and value as separate parameters. 883 * 884 * @deprecated 6.0.2 Use get_post_meta() to retrieve post meta and render manually. 885 885 */ 886 886 function the_meta() { 887 _deprecated_function( __FUNCTION__, '6.0.2', 'get_post_meta()' ); 887 888 if ( $keys = get_post_custom_keys() ) { 888 889 echo "<ul class='post-meta'>\n"; … … 903 904 * @param string $value Meta value. 904 905 */ 905 echo apply_filters( 'the_meta_key', "<li><span class='post-meta-key'> $key:</span> $value</li>\n", $key, $value );906 echo apply_filters( 'the_meta_key', "<li><span class='post-meta-key'>" . esc_html( $key ) . ":</span>" . esc_html( $value ) . "</li>\n", $key, $value ); 906 907 } 907 908 echo "</ul>\n";
Note: See TracChangeset
for help on using the changeset viewer.