only cache gets
This commit is contained in:
parent
81987f0e79
commit
b1df14ca4a
1 changed files with 1 additions and 1 deletions
|
@ -724,7 +724,7 @@ $_cache_memcache = false;
|
||||||
$_cache_filename = null;
|
$_cache_filename = null;
|
||||||
|
|
||||||
function _cache_active() {
|
function _cache_active() {
|
||||||
return ((CACHE_MEMCACHE || CACHE_DIR) && !isset($_COOKIE["shm_session"]) && !isset($_COOKIE["shm_nocache"]));
|
return ((CACHE_MEMCACHE || CACHE_DIR) && $_SERVER["REQUEST_METHOD"] == "GET" && !isset($_COOKIE["shm_session"]) && !isset($_COOKIE["shm_nocache"]));
|
||||||
}
|
}
|
||||||
|
|
||||||
function _start_cache() {
|
function _start_cache() {
|
||||||
|
|
Reference in a new issue