diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-03-07 21:57:37 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-03-07 21:57:37 +0000 |
commit | 59071bb6641c64567bc1d4ed75c515f991e259a9 (patch) | |
tree | eb503439ef31a57c0ae3bc26972325d7baeab0c9 /_css/css.php | |
parent | 3361c73a30ff20eae69a736dab0f9bc573cb540a (diff) | |
download | elgg-59071bb6641c64567bc1d4ed75c515f991e259a9.tar.gz elgg-59071bb6641c64567bc1d4ed75c515f991e259a9.tar.bz2 |
Closes #844 & #845: Override is now no longer forced on and so will now obey view cache settings.
git-svn-id: https://code.elgg.org/elgg/trunk@3125 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to '_css/css.php')
-rw-r--r-- | _css/css.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_css/css.php b/_css/css.php index b079e5673..20d76a25f 100644 --- a/_css/css.php +++ b/_css/css.php @@ -32,7 +32,7 @@ $viewinput['view'] = 'css';
$viewinput['viewtype'] = $_GET['viewtype'];
- $override = true;
+ //$override = true;
header("Content-type: text/css", true);
header('Expires: ' . date('r',time() + 86400000), true);
|