wpsc_catch_status_header()WPSCache 1.0

No Hooks.

Returns

null. Nothing (null).

Usage

wpsc_catch_status_header( $status_header, $code );
$status_header(required)
.
$code(required)
.

wpsc_catch_status_header() code WPSCache 3.0.0

function wpsc_catch_status_header( $status_header, $code ) {

	if ( $code != 200 ) {
		wpsc_catch_http_status_code( $code );
	}

	return $status_header;
}