Changeset 5640 for trunk/wp-includes/classes.php
- Timestamp:
- 06/02/2007 05:21:18 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/classes.php
r5575 r5640 177 177 if ( !is_user_logged_in() ) 178 178 nocache_headers(); 179 @header('Content- type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset'));179 @header('Content-Type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset')); 180 180 } else if ( empty($this->query_vars['feed']) ) { 181 @header('Content- type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset'));181 @header('Content-Type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset')); 182 182 } else { 183 183 // We're showing a feed, so WP is indeed the only thing that last changed … … 730 730 731 731 function send() { 732 header('Content- type: text/xml');732 header('Content-Type: text/xml'); 733 733 echo "<?xml version='1.0' standalone='yes'?><wp_ajax>"; 734 734 foreach ( $this->responses as $response )
Note: See TracChangeset
for help on using the changeset viewer.