X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fautopurge.php;h=262bc3d1f3518bfc4a12d4a8c31af111fab6a050;hb=d22205247313f4b67db5c9aa3aac07cd9d073bce;hp=c01be283639f223411f564b30cc1ff3ab2bbcd98;hpb=3e64a94e122e30dd66db07fd8c8cfae05871c460;p=mailer.git diff --git a/inc/autopurge.php b/inc/autopurge.php index c01be28363..262bc3d1f3 100644 --- a/inc/autopurge.php +++ b/inc/autopurge.php @@ -32,31 +32,19 @@ ************************************************************************/ // 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); } // END - if // Load all includes -$INC_POOL = GET_DIR_AS_ARRAY(PATH."inc/autopurge/", "purge-"); +$INC_POOL = GET_DIR_AS_ARRAY("inc/autopurge/", "purge-"); -// Include them all -foreach ($INC_POOL as $fqfn) { - // Load them only once - require_once($fqfn); -} // END - foreach +// Run the filter +RUN_FILTER('load_includes', $INC_POOL); -if (EXT_IS_ACTIVE("rallye")) { - // Check expired rallyes (hard-coded 3 days limit for displaying expired rallyes!) - require_once(PATH."inc/libs/rallye_functions.php"); - RALLYE_DELETE_EXPIRED_RALLYES(); -} - -if (EXT_IS_ACTIVE("bonus")) { - // Check for expired turbo bonus lines - require_once(PATH."inc/libs/bonus_functions.php"); - BONUS_PURGE_EXPIRED_TURBO_BONUS(); -} +// Run filters for extra autopurge +RUN_FILTER('extra_autopurge'); // ?>