Changeset 2052 for branches/branch-1_7/include/functions_html.inc.php
- Timestamp:
- Jul 6, 2007, 3:04:50 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/branch-1_7/include/functions_html.inc.php
r1900 r2052 705 705 case 403: $text='Forbidden';break; 706 706 case 404: $text='Not found';break; 707 } 708 } 709 header("HTTP/1.1 $code $text"); 710 header("Status: $code $text"); 707 case 500: $text='Server error';break; 708 case 503: $text='Service unavailable';break; 709 } 710 } 711 $protocol = $_SERVER["SERVER_PROTOCOL"]; 712 if ( ('HTTP/1.1' != $protocol) && ('HTTP/1.0' != $protocol) ) 713 $protocol = 'HTTP/1.0'; 714 715 if ( version_compare( phpversion(), '4.3.0', '>=' ) ) 716 { 717 header( "$protocol $code $text", true, $code ); 718 } 719 else 720 { 721 header( "$protocol $code $text" ); 722 } 711 723 trigger_action('set_status_header', $code, $text); 712 724 }
Note: See TracChangeset
for help on using the changeset viewer.