You are here

function _document_headers in Document 6

Same name and namespace in other branches
  1. 7 document.callback.inc \_document_headers()
  2. 8.x document.callback.inc \_document_headers()
5 calls to _document_headers()
document_add_type in ./document.callback.inc
document_change_doc_status in ./document.callback.inc
document_delete_doc in ./document.callback.inc
document_delete_types in ./document.callback.inc
document_search in ./document.callback.inc

File

./document.callback.inc, line 160

Code

function _document_headers() {
  header("Content-type: text/html");
  header("Expires: Wed, 29 Jan 1975 04:15:00 GMT");
  header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
  header("Cache-Control: no-cache, must-revalidate");
  header("Pragma: no-cache");
}