X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fload_cache.php;h=fad1bdde22d6912a7c3740fb78e8984210b66e9b;hp=37449da66528cf8d30330f8420f8d12955a29bad;hb=524c58a61b0a074fed8d7c9dc2f9ddab7f653595;hpb=9e7a725cc083c2807931c16f88f99a9a169ee174 diff --git a/inc/load_cache.php b/inc/load_cache.php index 37449da665..fad1bdde22 100644 --- a/inc/load_cache.php +++ b/inc/load_cache.php @@ -32,25 +32,22 @@ ************************************************************************/ // Some security stuff... -if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) { +if (!defined('__SECURITY')) { $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; require($INC); } -// Load admin cache -require_once(PATH."inc/load_cache-admin.php"); +// Load more cache includes +$INC_POOL = GET_DIR_AS_ARRAY(PATH."inc/loader/", "load_cache-"); -// Load mod_reg cache -require_once(PATH."inc/load_cache-modreg.php"); +// Include all +foreach ($INC_POOL as $fqfn) { + // Include the file + require_once($fqfn); +} // END - foreach -// Load config cache -require_once(PATH."inc/load_cache-config.php"); - -// Load refsystem cache -require_once(PATH."inc/load_cache-refsystem.php"); - -// Load refdepths cache -require_once(PATH."inc/load_cache-refdepths.php"); +// Remove array +unset($INC_POOL); // ?>