Update index.php

This commit is contained in:
Namhyeon Go 2019-11-15 15:56:44 +09:00 committed by GitHub
parent a2b6bcdfa7
commit 08a409324d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -128,7 +128,8 @@ if(!loadRoute($route, $scope)) {
// flush cache
$cache_max_age = intval(get_value_in_array("cache_max_age", $config, 0));
if(array_key_equals("cache_enabled", $config, 1)) {
$cache_enabled = array_key_equals("cache_enabled", $config, 1);
if($cache_max_age > 0 && $cache_enabled) {
remove_volatile_files("cache", $cache_max_age);
}