X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_beg.php;h=5fb3f71b9f6e6a1a7e84493773b77fe4afb6da21;hb=2142149f3f72f1a2476f95a87937c044d63bbaf2;hp=fa3115f182da4cfb1451c42af32baf1e1a0a78a0;hpb=6f9e53683f1ad62d68ed290abd19ba82498b6e9e;p=mailer.git diff --git a/inc/modules/admin/what-list_beg.php b/inc/modules/admin/what-list_beg.php index fa3115f182..5fb3f71b9f 100644 --- a/inc/modules/admin/what-list_beg.php +++ b/inc/modules/admin/what-list_beg.php @@ -32,12 +32,12 @@ ************************************************************************/ // Some security stuff... -if ((!defined('__SECURITY')) || (!is_admin())) { +if ((!defined('__SECURITY')) || (!IS_ADMIN())) { $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; require($INC); } // Add description as navigation point -ADD_DESCR("admin", basename(__FILE__)); +ADD_DESCR("admin", __FILE__); if ($_CONFIG['beg_rallye'] == "Y") { @@ -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");