Changeset 53974 for branches/4.9
- Timestamp:
- 08/30/2022 03:43:54 PM (3 years ago)
- Location:
- branches/4.9
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.9
- Property svn:mergeinfo changed
/trunk merged: 53958-53960
- Property svn:mergeinfo changed
-
branches/4.9/src/wp-admin/plugins.php
r44106 r53974 456 456 __( 'The plugin %1$s has been <strong>deactivated</strong> due to an error: %2$s' ), 457 457 '<code>' . esc_html( $plugin_file ) . '</code>', 458 $error->get_error_message() );458 esc_html( $error->get_error_message() ) ); 459 459 echo '</p></div>'; 460 460 } … … 491 491 492 492 if ( is_wp_error($delete_result) ) : ?> 493 <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>493 <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> 494 494 <?php else : ?> 495 495 <div id="message" class="updated notice is-dismissible"> -
branches/4.9/src/wp-includes/bookmark.php
r39600 r53974 283 283 $query .= " ORDER BY $orderby $order"; 284 284 if ( $r['limit'] != -1 ) { 285 $query .= ' LIMIT ' . $r['limit'];285 $query .= ' LIMIT ' . absint( $r['limit'] ); 286 286 } 287 287 -
branches/4.9/src/wp-includes/post-template.php
r45946 r53974 996 996 * @since 1.2.0 997 997 * 998 * @internal This will probably change at some point... 999 * 998 * @deprecated 6.0.2 Use get_post_meta() to retrieve post meta and render manually. 1000 999 */ 1001 1000 function the_meta() { 1001 _deprecated_function( __FUNCTION__, '6.0.2', 'get_post_meta()' ); 1002 1002 if ( $keys = get_post_custom_keys() ) { 1003 1003 echo "<ul class='post-meta'>\n"; … … 1013 1013 $html = sprintf( "<li><span class='post-meta-key'>%s</span> %s</li>\n", 1014 1014 /* translators: %s: Post custom field name */ 1015 sprintf( _x( '%s:', 'Post custom field name' ), $key),1016 $value1015 esc_html( sprintf( _x( '%s:', 'Post custom field name' ), $key ) ), 1016 esc_html( $value ) 1017 1017 ); 1018 1018
Note: See TracChangeset
for help on using the changeset viewer.