From 4c04dfc74733ad7ba68aa7fc05a0e52fb00b725b Mon Sep 17 00:00:00 2001 From: Matias Griese Date: Tue, 7 Oct 2014 12:31:01 +0300 Subject: [PATCH] Do not check blueprint updates when caching configuration --- system/src/Grav/Common/Config/Config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/src/Grav/Common/Config/Config.php b/system/src/Grav/Common/Config/Config.php index 9ee47a24a..a16ef7158 100644 --- a/system/src/Grav/Common/Config/Config.php +++ b/system/src/Grav/Common/Config/Config.php @@ -156,7 +156,7 @@ class Config extends Data public function checksum() { - $checkBlueprints = $this->get('system.cache.check.blueprints', true); + $checkBlueprints = $this->get('system.cache.check.blueprints', false); $checkConfig = $this->get('system.cache.check.config', true); $checkSystem = $this->get('system.cache.check.system', true);