From a28a0aba7da0b7030e8589218acb56771ec24289 Mon Sep 17 00:00:00 2001 From: Romain Quetiez Date: Fri, 23 Aug 2013 14:36:33 +0000 Subject: [PATCH] Compiler: when creating a test environment, take the relevant delta file (source env != dest env) SVN:trunk[2832] --- setup/runtimeenv.class.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/runtimeenv.class.inc.php b/setup/runtimeenv.class.inc.php index 8c6e2544fc..d46718d813 100644 --- a/setup/runtimeenv.class.inc.php +++ b/setup/runtimeenv.class.inc.php @@ -316,7 +316,7 @@ class RunTimeEnvironment } } - $sDeltaFile = APPROOT.'data/'.$sSourceEnv.'.delta.xml'; + $sDeltaFile = APPROOT.'data/'.$this->sTargetEnv.'.delta.xml'; if (file_exists($sDeltaFile)) { $oDelta = new MFDeltaModule($sDeltaFile);