X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_beg.php;h=cc3eba1700290d80e7f6a5bac12a76faf0f20309;hp=fa3115f182da4cfb1451c42af32baf1e1a0a78a0;hb=4240b5d40ef77c13d4e76dc75da545114f69f08f;hpb=e521a48cf5d2a3090bd8d7a9cb21dfbc2dfda257 diff --git a/inc/modules/admin/what-list_beg.php b/inc/modules/admin/what-list_beg.php index fa3115f182..cc3eba1700 100644 --- a/inc/modules/admin/what-list_beg.php +++ b/inc/modules/admin/what-list_beg.php @@ -57,8 +57,8 @@ if ($_CONFIG['beg_rallye'] == "Y") if (EXT_IS_ACTIVE("autopurge")) { // Use last online timestamp to keep inactive members away from here - $LAST = " AND last_online >= %s"; - $ONLINE = bigintval(time() - $_CONFIG['ap_inactive_since']); + $LAST = " AND last_online >= (UNIX_TIMESTAMP() - %s)"; + $ONLINE = $_CONFIG['ap_inactive_since']; } // Check if at least one is in the active rallye @@ -116,7 +116,11 @@ ORDER BY beg_points DESC, last_online DESC, userid", } // Prepare constant for timemark - define('__AUTOPURGE_TIMEOUT', MAKE_DATETIME(time() - $_CONFIG['ap_inactive_since'], "2")); + if (EXT_IS_ACTIVE("autopurge")) { + define('__AUTOPURGE_TIMEOUT', MAKE_DATETIME(time() - $_CONFIG['ap_inactive_since'], "2")); + } else { + define('__AUTOPURGE_TIMEOUT', sprintf(EXTENSION_PROBLEM_NOT_INSTALLED, "autopurge")); + } // Load final template LOAD_TEMPLATE("admin_list_beg");