Changeset 5700 for trunk/wp-includes/functions.php
- Timestamp:
- 06/14/2007 02:25:30 AM (19 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/functions.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r5694 r5700 707 707 function get_status_header_desc( $code ) { 708 708 global $wp_header_to_desc; 709 709 710 710 $code = (int) $code; 711 711 712 712 if ( isset( $wp_header_to_desc[$code] ) ) { 713 713 return $wp_header_to_desc[$code]; … … 719 719 function status_header( $header ) { 720 720 $text = get_status_header_desc( $header ); 721 721 722 722 if ( empty( $text ) ) 723 723 return false; … … 1297 1297 } 1298 1298 } 1299 1299 1300 1300 if ( is_array( $defaults ) ) { 1301 1301 return array_merge( $defaults, $r );
Note: See TracChangeset
for help on using the changeset viewer.