From 6ee48c74f742363564d16395633953a285a1e9ae Mon Sep 17 00:00:00 2001 From: Flavio Copes Date: Sun, 3 Jan 2016 19:10:17 +0100 Subject: [PATCH] Call finalizeObject on Config from loadCompiledFile() when cache is already built finalizeObject, which assigns the checksum to the Config object, was never called after the cache was built --- system/src/Grav/Common/Config/CompiledBase.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/system/src/Grav/Common/Config/CompiledBase.php b/system/src/Grav/Common/Config/CompiledBase.php index f861cef34..9f51d7d26 100644 --- a/system/src/Grav/Common/Config/CompiledBase.php +++ b/system/src/Grav/Common/Config/CompiledBase.php @@ -192,7 +192,9 @@ abstract class CompiledBase } $this->createObject($cache['data']); - + + $this->finalizeObject(); + return true; }