Changeset 53968 for branches/5.5
- Timestamp:
- 08/30/2022 03:33:59 PM (3 years ago)
- Location:
- branches/5.5
- Files:
-
- 5 edited
-
. (modified) (1 prop)
-
composer.json (modified) (1 diff)
-
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/5.5
- Property svn:mergeinfo changed
/trunk merged: 52412,53958-53960
- Property svn:mergeinfo changed
-
branches/5.5/composer.json
r51843 r53968 20 20 "yoast/phpunit-polyfills": "^1.0.1" 21 21 }, 22 "config": { 23 "allow-plugins": { 24 "dealerdirect/phpcodesniffer-composer-installer": true 25 } 26 }, 22 27 "scripts": { 23 28 "compat": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs --standard=phpcompat.xml.dist --report=summary,source", -
branches/5.5/src/wp-admin/plugins.php
r48669 r53968 611 611 __( 'The plugin %1$s has been deactivated due to an error: %2$s' ), 612 612 '<code>' . esc_html( $plugin_file ) . '</code>', 613 $error->get_error_message()613 esc_html( $error->get_error_message() ) 614 614 ); 615 615 echo '</p></div>'; … … 673 673 /* translators: %s: Error message. */ 674 674 __( 'Plugin could not be deleted due to an error: %s' ), 675 $delete_result->get_error_message()675 esc_html( $delete_result->get_error_message() ) 676 676 ); 677 677 ?> -
branches/5.5/src/wp-includes/bookmark.php
r48591 r53968 308 308 $query .= " ORDER BY $orderby $order"; 309 309 if ( -1 != $parsed_args['limit'] ) { 310 $query .= ' LIMIT ' . $parsed_args['limit'];310 $query .= ' LIMIT ' . absint( $parsed_args['limit'] ); 311 311 } 312 312 -
branches/5.5/src/wp-includes/post-template.php
r48574 r53968 1087 1087 * @since 1.2.0 1088 1088 * 1089 * @ internal This will probably change at some point...1089 * @deprecated 6.0.2 Use get_post_meta() to retrieve post meta and render manually. 1090 1090 */ 1091 1091 function the_meta() { 1092 _deprecated_function( __FUNCTION__, '6.0.2', 'get_post_meta()' ); 1092 1093 $keys = get_post_custom_keys(); 1093 1094 if ( $keys ) { … … 1105 1106 "<li><span class='post-meta-key'>%s</span> %s</li>\n", 1106 1107 /* translators: %s: Post custom field name. */ 1107 sprintf( _x( '%s:', 'Post custom field name' ), $key),1108 $value1108 esc_html( sprintf( _x( '%s:', 'Post custom field name' ), $key ) ), 1109 esc_html( $value ) 1109 1110 ); 1110 1111
Note: See TracChangeset
for help on using the changeset viewer.