Changeset 34446
- Timestamp:
- 09/22/2015 08:26:17 PM (9 years ago)
- Location:
- trunk/src
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-media-list-table.php
r34383 r34446 78 78 79 79 /** 80 *81 * @global wpdb $wpdb82 80 * @global array $post_mime_types 83 81 * @global array $avail_post_mime_types -
trunk/src/wp-includes/canonical.php
r34272 r34446 534 534 * 535 535 * @global wpdb $wpdb WordPress database abstraction object. 536 * @global WP_Rewrite $wp_rewrite537 536 * 538 537 * @return false|string The correct URL if one is found. False on failure. 539 538 */ 540 539 function redirect_guess_404_permalink() { 541 global $wpdb , $wp_rewrite;540 global $wpdb; 542 541 543 542 if ( get_query_var('name') ) { -
trunk/src/wp-includes/comment-functions.php
r34411 r34446 163 163 * @since 2.0.0 164 164 * 165 * @global wpdb $wpdb WordPress database abstraction object.166 165 * @global object $comment 167 166 * -
trunk/src/wp-includes/post-functions.php
r34400 r34446 5407 5407 * 5408 5408 * @global bool $_wp_suspend_cache_invalidation 5409 * @global wpdb $wpdb WordPress database abstraction object.5410 5409 * 5411 5410 * @param int|WP_Post $post Post ID or post object to remove from the cache. 5412 5411 */ 5413 5412 function clean_post_cache( $post ) { 5414 global $_wp_suspend_cache_invalidation , $wpdb;5413 global $_wp_suspend_cache_invalidation; 5415 5414 5416 5415 if ( ! empty( $_wp_suspend_cache_invalidation ) ) -
trunk/src/wp-includes/post-template.php
r34330 r34446 529 529 * 530 530 * @global WP_Query $wp_query 531 * @global wpdb $wpdb532 531 * 533 532 * @param string|array $class One or more classes to add to the class list. … … 535 534 */ 536 535 function get_body_class( $class = '' ) { 537 global $wp_query , $wpdb;536 global $wp_query; 538 537 539 538 $classes = array(); -
trunk/src/wp-includes/taxonomy-functions.php
r34403 r34446 3870 3870 * @since 4.3.0 3871 3871 * 3872 * @global wpdb $wpdb3873 *3874 3872 * @param int $term_id ID of the formerly shared term. 3875 3873 * @param int $new_term_id ID of the new term created for the $term_taxonomy_id. -
trunk/src/wp-includes/user-functions.php
r34393 r34446 860 860 * @since 2.3.0 861 861 * 862 * @global wpdb $wpdb WordPress database object for queries.863 862 * @global int $blog_id 864 863 *
Note: See TracChangeset
for help on using the changeset viewer.