From: Roland Häder Date: Fri, 30 Oct 2009 09:52:32 +0000 (+0000) Subject: Filter moved, fixes for RNG X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=8d55583979393ee9d065531e3a2f6ab1507406d3 Filter moved, fixes for RNG --- diff --git a/inc/filter-functions.php b/inc/filter-functions.php index 7c88b79ca9..5e3a5d8284 100644 --- a/inc/filter-functions.php +++ b/inc/filter-functions.php @@ -120,10 +120,10 @@ ORDER BY registerFilter('init', 'LOAD_CONFIGURATION'); registerFilter('init', 'INIT_EXTENSIONS'); registerFilter('init', 'LOAD_RUNTIME_INCLUDES'); - registerFilter('init', 'CHECK_SVN_REVISION'); - registerFilter('init', 'RUN_DAILY_RESET'); registerFilter('init', 'INIT_RANDOMIZER'); registerFilter('init', 'INIT_RANDOM_NUMBER'); + registerFilter('init', 'CHECK_SVN_REVISION'); + registerFilter('init', 'RUN_DAILY_RESET'); registerFilter('init', 'TRIGGER_SENDING_POOL'); registerFilter('init', 'DETERMINE_USERNAME'); registerFilter('init', 'DETERMINE_WHAT_ACTION'); diff --git a/inc/filters.php b/inc/filters.php index 174dad1ad8..3f7569eaa3 100644 --- a/inc/filters.php +++ b/inc/filters.php @@ -699,7 +699,7 @@ function FILTER_CHECK_ADMIN_ACL () { // Init random number/cache buster function FILTER_INIT_RANDOM_NUMBER () { // Is the extension sql_patches installed and at least 0.3.6? - if ((isExtensionActive('sql_patches')) && (getExtensionVersion('sql_patches') >= '0.3.6')) { + if ((isExtensionInstalledAndNewer('sql_patches', '0.3.6')) && (isExtensionInstalledAndNewer('other', '0.2.5'))) { // Generate random number setConfigEntry('RAND_NUMBER', generateRandomCode(10, mt_rand(10000, 32766), getUserId(), '')); } else {