Changeset 53972
- Timestamp:
- 08/30/2022 03:40:19 PM (3 years ago)
- Location:
- branches/5.1
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.1
- Property svn:mergeinfo changed
/trunk merged: 52412,53958-53960
- Property svn:mergeinfo changed
-
branches/5.1/composer.json
r49516 r53972 14 14 "wp-coding-standards/wpcs": "~2.0.0" 15 15 }, 16 "config": { 17 "allow-plugins": { 18 "dealerdirect/phpcodesniffer-composer-installer": true 19 } 20 }, 16 21 "scripts": { 17 22 "format": "phpcbf --standard=phpcs.xml.dist --report-summary --report-source", -
branches/5.1/src/wp-admin/plugins.php
r49516 r53972 467 467 __( 'The plugin %1$s has been <strong>deactivated</strong> due to an error: %2$s' ), 468 468 '<code>' . esc_html( $plugin_file ) . '</code>', 469 $error->get_error_message()469 esc_html( $error->get_error_message() ) 470 470 ); 471 471 echo '</p></div>'; … … 518 518 if ( is_wp_error( $delete_result ) ) : 519 519 ?> 520 <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>520 <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> 521 521 <?php else : ?> 522 522 <div id="message" class="updated notice is-dismissible"> -
branches/5.1/src/wp-includes/bookmark.php
r44546 r53972 293 293 $query .= " ORDER BY $orderby $order"; 294 294 if ( $r['limit'] != -1 ) { 295 $query .= ' LIMIT ' . $r['limit'];295 $query .= ' LIMIT ' . absint( $r['limit'] ); 296 296 } 297 297 -
branches/5.1/src/wp-includes/post-template.php
r45940 r53972 1048 1048 * @since 1.2.0 1049 1049 * 1050 * @ internal This will probably change at some point...1050 * @deprecated 6.0.2 Use get_post_meta() to retrieve post meta and render manually. 1051 1051 */ 1052 1052 function the_meta() { 1053 _deprecated_function( __FUNCTION__, '6.0.2', 'get_post_meta()' ); 1053 1054 if ( $keys = get_post_custom_keys() ) { 1054 1055 $li_html = ''; … … 1065 1066 "<li><span class='post-meta-key'>%s</span> %s</li>\n", 1066 1067 /* translators: %s: Post custom field name */ 1067 sprintf( _x( '%s:', 'Post custom field name' ), $key),1068 $value1068 esc_html( sprintf( _x( '%s:', 'Post custom field name' ), $key ) ), 1069 esc_html( $value ) 1069 1070 ); 1070 1071
Note: See TracChangeset
for help on using the changeset viewer.