summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-02-24 18:57:14 +0100
committerAndrew Dolgov <[email protected]>2006-02-24 18:57:14 +0100
commitce0619bbb0187545165e5ec9acb3235a37766316 (patch)
tree324adfd1221ddf2f57da5809427a1710ee203e8c /backend.php
parent5f136c9acc41d505d06bee8f45b3c4425085eb8f (diff)
disable caching for backend output
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/backend.php b/backend.php
index 76564fb7d..a58cb85e9 100644
--- a/backend.php
+++ b/backend.php
@@ -1,5 +1,9 @@
<?
session_start();
+
+ header("Cache-Control: no-cache");
+ header("Pragma: no-cache");
+ header("Expires: -1");
if ($_GET["debug"]) {
define('DEFAULT_ERROR_LEVEL', E_ALL);