You are here

function http_response_headers_cache_reset in HTTP Response Headers 7

Clears the header rule per page cache.

2 calls to http_response_headers_cache_reset()
http_response_headers_rule_delete in ./http_response_headers.module
Callback to delete a header rule.
http_response_headers_rule_save in ./http_response_headers.module
Save a single header rule to the database.

File

./http_response_headers.module, line 388
Contains HTTP response headers.

Code

function http_response_headers_cache_reset() {
  cache_clear_all('http_response_headers_page:', HTTP_RESPONSE_HEADERS_CACHE_BIN, TRUE);
}