From f788f589fac8ebd9fbfba01dfe36827146c8bc54 Mon Sep 17 00:00:00 2001 From: Denis Flaven Date: Wed, 10 Oct 2012 10:16:29 +0000 Subject: [PATCH] ResetCache requires the Dict class. SVN:trunk[2247] --- setup/applicationinstaller.class.inc.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup/applicationinstaller.class.inc.php b/setup/applicationinstaller.class.inc.php index d0268baf2..760f21403 100644 --- a/setup/applicationinstaller.class.inc.php +++ b/setup/applicationinstaller.class.inc.php @@ -774,7 +774,9 @@ class ApplicationInstaller // try to make the final config file read-only @chmod($sConfigFile, 0444); // Read-only for owner and group, nothing for others + // Ready to go !! + require_once(APPROOT.'core/dict.class.inc.php'); MetaModel::ResetCache($sTargetEnvironment); } }