Changeset 53986
- Timestamp:
- 08/30/2022 03:56:55 PM (3 years ago)
- Location:
- branches/3.7
- Files:
-
- 5 edited
-
. (modified) (1 prop)
-
src (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/3.7
- Property svn:mergeinfo changed
/trunk merged: 53958-53960
- Property svn:mergeinfo changed
-
branches/3.7/src
- Property svn:mergeinfo changed
/trunk/src merged: 53958-53960
- Property svn:mergeinfo changed
-
branches/3.7/src/wp-admin/plugins.php
r41456 r53986 373 373 if ( !empty($invalid) ) 374 374 foreach ( $invalid as $plugin_file => $error ) 375 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>';375 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>'; 376 376 ?> 377 377 … … 398 398 399 399 if ( is_wp_error($delete_result) ) : ?> 400 <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>400 <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> 401 401 <?php else : ?> 402 402 <div id="message" class="updated"><p><?php _e('The selected plugins have been <strong>deleted</strong>.'); ?></p></div> -
branches/3.7/src/wp-includes/bookmark.php
r27919 r53986 257 257 $query .= " ORDER BY $orderby $order"; 258 258 if ($limit != -1) 259 $query .= " LIMIT $limit";259 $query .= ' LIMIT ' . absint( $limit ); 260 260 261 261 $results = $wpdb->get_results($query); -
branches/3.7/src/wp-includes/post-template.php
r45969 r53986 732 732 * Display list of post custom fields. 733 733 * 734 * @internal This will probably change at some point...735 734 * @since 1.2.0 736 * @uses apply_filters() Calls 'the_meta_key' on list item HTML content, with key and value as separate parameters. 735 * 736 * @deprecated 6.0.2 Use get_post_meta() to retrieve post meta and render manually. 737 737 */ 738 738 function the_meta() { 739 _deprecated_function( __FUNCTION__, '6.0.2', 'get_post_meta()' ); 739 740 if ( $keys = get_post_custom_keys() ) { 740 741 echo "<ul class='post-meta'>\n"; … … 745 746 $values = array_map('trim', get_post_custom_values($key)); 746 747 $value = implode($values,', '); 747 echo apply_filters('the_meta_key', "<li><span class='post-meta-key'> $key:</span> $value</li>\n", $key, $value);748 echo apply_filters('the_meta_key', "<li><span class='post-meta-key'>" . esc_html( $key ) . ":</span> " . esc_html( $value ) . "</li>\n", $key, $value); 748 749 } 749 750 echo "</ul>\n";
Note: See TracChangeset
for help on using the changeset viewer.