Make WordPress Core

Ticket #24622: If-Modified-Since_Bug_rev2.patch

File If-Modified-Since_Bug_rev2.patch, 580 bytes (added by sweetie089, 11 years ago)
  • wp-includes/class-wp.php

     
    300300                                $this->query_vars[$var] = $this->extra_query_vars[$var];
    301301                }
    302302
     303                if ( isset( $this->query_vars['feed'] )
     304                        && in_array( $this->query_vars['feed'], array( 'comments-rss2', 'comments-atom' ))
     305                        && empty( $this->query_vars['withcomments'] )
     306                )
     307                        $this->query_vars['withcomments'] = true;
     308
    303309                if ( isset($error) )
    304310                        $this->query_vars['error'] = $error;
    305311