summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-03-02 12:34:34 +0100
committerAndrew Dolgov <[email protected]>2007-03-02 12:34:34 +0100
commitdc56b3b7dac5b3ac757c10971e10aa7a1f09ea47 (patch)
tree59870f6c818a30afa37f2887838451387a971a38 /backend.php
parentf7c390b8787fbf5cf0fbc3cb8c1396454edb7b28 (diff)
no-cache fixes for safari
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php9
1 files changed, 4 insertions, 5 deletions
diff --git a/backend.php b/backend.php
index 656dcbf9c..b1ddcd5af 100644
--- a/backend.php
+++ b/backend.php
@@ -1,11 +1,8 @@
<?php
require_once "sessions.php";
require_once "modules/backend-rpc.php";
-
- header("Cache-Control: no-cache, max-age=0, must-revalidate");
- header("Pragma: no-cache");
- header("Expires: " . gmdate("D, d M Y H:i:s", time()) . " GMT");
-
+
+
/* if ($_GET["debug"]) {
define('DEFAULT_ERROR_LEVEL', E_ALL);
} else {
@@ -23,6 +20,8 @@
require_once "db-prefs.php";
require_once "functions.php";
+ no_cache_incantation();
+
$script_started = getmicrotime();
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);