diff options
author | Christian Schneider | 2014-09-26 11:33:23 +0200 |
---|---|---|
committer | Christian Schneider | 2014-09-26 11:33:23 +0200 |
commit | acb0851e32c9a4d3a0ae3c250e3e65fde86c9620 (patch) | |
tree | c510f27cbeb32564e84f377bc24b4a5ffb9f14a2 | |
parent | 2b0b108bbbd32f8e371db7577265074f5a9c7b3c (diff) | |
download | itools-acb0851e32c9a4d3a0ae3c250e3e65fde86c9620.tar.gz itools-acb0851e32c9a4d3a0ae3c250e3e65fde86c9620.tar.bz2 itools-acb0851e32c9a4d3a0ae3c250e3e65fde86c9620.zip |
Disable 304 for itjs until we have a solution for iOS caching bugs
-rw-r--r-- | itjs.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24,7 +24,7 @@ require "itools/itools.lib"; if (EDC('slow' . it::match('\.(\w+)$', $_SERVER['PHP_SELF']))) sleep(10); -if ($_COOKIE['myosotis'] == "1e62eaae5ea2a89a34fb674e77a10190" && $_SERVER['HTTP_IF_NONE_MATCH'] && !it::is_devel() && !$_REQUEST['retry']) # Currently only for cschneid +if (false && !$_SERVER['HTTP_CACHE_CONTROL'] && $_SERVER['HTTP_IF_NONE_MATCH'] && !it::is_devel() && !$_REQUEST['retry']) { header("HTTP/1.0 304 Not Modified"); # client should always keep the component that fits the page it has exit; |