Changeset 6107
- Timestamp:
- 09/13/07 05:00:46 (1 year ago)
- Files:
-
- trunk/wp-includes/functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-includes/functions.php
r6104 r6107 804 804 $protocol = 'HTTP/1.0'; 805 805 $status_header = "$protocol $header $text"; 806 $status_header = apply_filters('status_header', $status_header, $header, $text, $protocol); 806 if ( function_exists('apply_filters') ) 807 $status_header = apply_filters('status_header', $status_header, $header, $text, $protocol); 807 808 808 809 if ( version_compare( phpversion(), '4.3.0', '>=' ) ) {
