Changeset 6107 for trunk/wp-includes/functions.php
- Timestamp:
- 09/13/2007 05:00:46 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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', '>=' ) ) {
Note: See TracChangeset
for help on using the changeset viewer.