From 743bad9cbb16987b3eeb928f878c049d0055b768 Mon Sep 17 00:00:00 2001 From: Timothy Warren Date: Tue, 12 Jul 2011 10:38:28 -0700 Subject: [PATCH 1/2] Fixed reference to "css.tsp" --- css.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css.php b/css.php index 139aa82..51fd478 100644 --- a/css.php +++ b/css.php @@ -74,7 +74,7 @@ if($last_modified === $requested_time) header("Content-Type: text/css; charset=utf8"); header("Cache-control: public, max-age=691200, must-revalidate"); header("Last-Modified: ".gmdate('D, d M Y H:i:s', $last_modified)." GMT"); -header("Expires: ".gmdate('D, d M Y H:i:s', (filemtime($base_path.'css.tsp') + 691200))." GMT"); +header("Expires: ".gmdate('D, d M Y H:i:s', (filemtime($base_path.'css.php') + 691200))." GMT"); echo $css; From 4d29cd0c66c631accc936b8ced11fab0997a89dd Mon Sep 17 00:00:00 2001 From: Timothy Warren Date: Tue, 12 Jul 2011 10:39:03 -0700 Subject: [PATCH 2/2] Fixed reference to js.tsp --- js.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js.php b/js.php index 2b1c2ae..e244ae8 100644 --- a/js.php +++ b/js.php @@ -66,7 +66,7 @@ if($last_modified === $requested_time) header("Content-Type: application/x-javascript; charset=utf8"); header("Cache-control: public, max-age=691200, must-revalidate"); header("Last-Modified: ".gmdate('D, d M Y H:i:s', $last_modified)." GMT"); -header("Expires: ".gmdate('D, d M Y H:i:s', (filemtime($base_path.'js.tsp') + 691200))." GMT"); +header("Expires: ".gmdate('D, d M Y H:i:s', (filemtime($base_path.'js.php') + 691200))." GMT"); echo $js;