Changeset 53984 for branches/3.9
- Timestamp:
- 08/30/2022 03:54:51 PM (2 years ago)
- Location:
- branches/3.9
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.9
- Property svn:mergeinfo changed
/trunk merged: 53958-53960
- Property svn:mergeinfo changed
-
branches/3.9/src/wp-admin/plugins.php
r41449 r53984 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="updated"><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="updated"><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/3.9/src/wp-includes/bookmark.php
r27916 r53984 275 275 $query .= " ORDER BY $orderby $order"; 276 276 if ($limit != -1) 277 $query .= " LIMIT $limit";277 $query .= ' LIMIT ' . absint( $limit ); 278 278 279 279 $results = $wpdb->get_results($query); -
branches/3.9/src/wp-includes/post-template.php
r45965 r53984 863 863 * Display list of post custom fields. 864 864 * 865 * @internal This will probably change at some point...866 865 * @since 1.2.0 867 * @uses apply_filters() Calls 'the_meta_key' on list item HTML content, with key and value as separate parameters. 866 * 867 * @deprecated 6.0.2 Use get_post_meta() to retrieve post meta and render manually. 868 868 */ 869 869 function the_meta() { 870 _deprecated_function( __FUNCTION__, '6.0.2', 'get_post_meta()' ); 870 871 if ( $keys = get_post_custom_keys() ) { 871 872 echo "<ul class='post-meta'>\n"; … … 886 887 * @param string $value Meta value. 887 888 */ 888 echo apply_filters( 'the_meta_key', "<li><span class='post-meta-key'> $key:</span> $value</li>\n", $key, $value );889 echo apply_filters( 'the_meta_key', "<li><span class='post-meta-key'>" . esc_html( $key ) . ":</span>" . esc_html( $value ) . "</li>\n", $key, $value ); 889 890 } 890 891 echo "</ul>\n";
Note: See TracChangeset
for help on using the changeset viewer.