X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fautopurge.php;h=5f2af6265f74bf608ea741f66e7c2d5923e4613f;hb=eebb737fcb823c159d66732d37c336bc932c3246;hp=c3a206f0fb2214e6fa7e05150a2ad64819f47c6c;hpb=39172de4ecec2f6ddc597a5ae439e7aef79c75ed;p=mailer.git diff --git a/inc/autopurge.php b/inc/autopurge.php index c3a206f0fb..5f2af6265f 100644 --- a/inc/autopurge.php +++ b/inc/autopurge.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Auto-Loeschung von veralteten Mail-Links * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $Date:: $ * + * $Tag:: 0.2.1-FINAL $ * + * $Author:: $ * + * Needs to be in all Files and every File needs "svn propset * + * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2008 by Roland Haeder * * For more information visit: http://www.mxchange.org * @@ -33,18 +38,19 @@ // Some security stuff... if (!defined('__SECURITY')) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; + $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-"); +// Init & set the include pool +INIT_INC_POOL(); +SET_INC_POOL(getArrayFromDirectory('inc/autopurge/', 'purge-')); // Run the filter -RUN_FILTER('load_includes'); +runFilterChain('load_includes'); // Run filters for extra autopurge -RUN_FILTER('extra_autopurge'); +runFilterChain('extra_autopurge'); // ?>