Changeset 814
- Timestamp:
- 11/28/06 12:01:16 (2 years ago)
- Files:
-
- trunk/wp-content/blogs.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-content/blogs.php
r797 r814 9 9 ) { 10 10 header("HTTP/1.1 404 Not Found"); 11 graceful_fail('404 — File not found.');11 die('404 — File not found.'); 12 12 } 13 13 … … 75 75 if ( !is_file( $file ) ) { 76 76 header("HTTP/1.1 404 Not Found"); 77 graceful_fail('404 — File not found.');77 die('404 — File not found.'); 78 78 } 79 79 … … 82 82 if ( in_array( preg_replace( '|.*\.(.*)$|', '$1', $file ), $never ) ) { 83 83 header("HTTP/1.1 404 Not Found"); 84 graceful_fail('404 — File not found.');84 die('404 — File not found.'); 85 85 } 86 86
