Make WordPress Core

Ticket #24785: 24785.1.diff

File 24785.1.diff, 584 bytes (added by ericlewis, 12 years ago)

remove incorrect doc block reference to introduction in 3.3

  • wp-includes/query.php

     
    35683568                global $wp_the_query;
    35693569                return $wp_the_query === $this;
    35703570        }
     3571
     3572        /**
     3573         * After looping through a nested query, this function
     3574         * restores the $post global to the current post in this query
     3575         *
     3576         * @return bool
     3577         */     
     3578        function wp_reset_postdata() {
     3579                if ( !empty($this->post) ) {
     3580                        $GLOBALS['post'] = $this->post;
     3581                        setup_postdata($this->post);
     3582                }
     3583        }
     3584
    35713585}
    35723586
    35733587/**