Ticket #13049: 13049-v2.patch
File 13049-v2.patch, 553 bytes (added by , 13 years ago) |
---|
-
wp/wp-includes/query.php
1500 1500 } 1501 1501 1502 1502 /** 1503 * Sets the 404 property and saves whether query is feed.1503 * Sets the 404 property and resets all other properties 1504 1504 * 1505 1505 * @since 2.0.0 1506 1506 * @access public 1507 1507 */ 1508 1508 function set_404() { 1509 $is_feed = $this->is_feed;1510 1511 1509 $this->init_query_flags(); 1512 1510 $this->is_404 = true; 1513 1514 $this->is_feed = $is_feed;1515 1511 } 1516 1512 1517 1513 /**