Commit b302ab2cae9aebb81eb257068ce0cce4a2b08884

Authored by Benjamin Renard
1 parent 88e3aa1b

Fix for dynamically loading plugins (#6015)

Showing 1 changed file with 3 additions and 0 deletions   Show diff stats
src/Request/Config/KernelConfigClass.php
@@ -192,6 +192,9 @@ class KernelConfigClass @@ -192,6 +192,9 @@ class KernelConfigClass
192 foreach (self::$libArray as $lib) 192 foreach (self::$libArray as $lib)
193 $appProperties["app.process.LIB"] .= ("-l".$lib." "); 193 $appProperties["app.process.LIB"] .= ("-l".$lib." ");
194 194
  195 + $appProperties["app.process.DYNAMIC_LOADING"] = "false";
  196 + $appProperties["app.process.plugins.xml"] = KERNEL_CONFIG_DIR.'/plugins.xml';
  197 +
195 $appProperties["app.plot.configfile"] = KERNEL_CONFIG_DIR.'/'.self::$plotConfigFile; 198 $appProperties["app.plot.configfile"] = KERNEL_CONFIG_DIR.'/'.self::$plotConfigFile;
196 199
197 $appProperties["app.param.gapthreshold"] = self::$defaultGapThreshold; 200 $appProperties["app.param.gapthreshold"] = self::$defaultGapThreshold;