Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
New hook applied when preloading boot conf
Browse files Browse the repository at this point in the history
  • Loading branch information
cdujeu committed Sep 17, 2014
1 parent 83a6620 commit 18fa94e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion core/src/plugins/gui.ajax/class.AJXP_ClientDriver.php
Expand Up @@ -174,7 +174,9 @@ public function switchAction($action, $httpVars, $fileVars)
}
// PRECOMPUTE BOOT CONF
if (!preg_match('/MSIE 7/',$_SERVER['HTTP_USER_AGENT']) && !preg_match('/MSIE 8/',$_SERVER['HTTP_USER_AGENT'])) {
$START_PARAMETERS["PRELOADED_BOOT_CONF"] = $this->computeBootConf();
$preloadedBootConf = $this->computeBootConf();
AJXP_Controller::applyHook("loader.filter_boot_conf", array(&$preloadedBootConf));
$START_PARAMETERS["PRELOADED_BOOT_CONF"] = $preloadedBootConf;
}

// PRECOMPUTE REGISTRY
Expand Down

0 comments on commit 18fa94e

Please sign in to comment.