Make WordPress Core

Ticket #14976: 14976.diff

File 14976.diff, 1.5 KB (added by coffee2code, 14 years ago)

Updated original patch

  • wp-includes/query.php

     
    997997        var $is_comments_popup = false;
    998998
    999999        /**
     1000         * Set if query is paged
     1001         *
     1002         * @since 1.5.0
     1003         * @access public
     1004         * @var bool
     1005         */
     1006        var $is_paged = false;
     1007
     1008        /**
    10001009         * Set if query is part of administration page.
    10011010         *
    10021011         * @since 1.5.0
     
    10531062         */
    10541063        function init_query_flags() {
    10551064                $this->is_single = false;
     1065                $this->is_preview = false;
    10561066                $this->is_page = false;
    10571067                $this->is_archive = false;
    10581068                $this->is_date = false;
     
    10701080                $this->is_trackback = false;
    10711081                $this->is_home = false;
    10721082                $this->is_404 = false;
     1083                $this->is_comments_popup = false;
    10731084                $this->is_paged = false;
    10741085                $this->is_admin = false;
    10751086                $this->is_attachment = false;
     
    10881099                unset($this->posts);
    10891100                unset($this->query);
    10901101                $this->query_vars = array();
     1102                $this->tax_query = array();
     1103                $this->meta_query = array();
    10911104                unset($this->queried_object);
    10921105                unset($this->queried_object_id);
    10931106                $this->post_count = 0;
    10941107                $this->current_post = -1;
    10951108                $this->in_the_loop = false;
     1109                unset( $this->request );
     1110                unset( $this->post );
     1111                unset( $this->comments );
     1112                unset( $this->comment );
     1113                $this->comment_count = 0;
     1114                $this->current_comment = -1;
     1115                $this->found_posts = 0;
     1116                $this->max_num_pages = 0;
     1117                $this->max_num_comment_pages = 0;
    10961118
    10971119                $this->init_query_flags();
    10981120        }