X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_reg.php;h=d64d2aa869db4b6ad0cab3904f08686728ab3965;hb=427719103e37ed2e27803b833dc5db5841e4dec9;hp=aa0324940793f2bc4f0e5453a548038cffa643cf;hpb=75ad748a68473ace540251427a74fb781b1145e9;p=mailer.git diff --git a/inc/modules/admin/what-config_reg.php b/inc/modules/admin/what-config_reg.php index aa03249407..d64d2aa869 100644 --- a/inc/modules/admin/what-config_reg.php +++ b/inc/modules/admin/what-config_reg.php @@ -32,18 +32,14 @@ ************************************************************************/ // Some security stuff... -if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN())) -{ +if ((!defined('__SECURITY')) || (!IS_ADMIN())) { $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; require($INC); } -global $link; - // Add description as navigation point -ADD_DESCR("admin", basename(__FILE__)); +ADD_DESCR("admin", __FILE__); -OPEN_TABLE("100%", "admin_content admin_content_align", ""); if ((isset($_POST['ok'])) && (function_exists('CREATE_TIME_SELECTIONS'))) { // Calculate timestamp from selections... @@ -57,21 +53,21 @@ if ((empty($_POST['least_cats'])) || (empty($_POST['ip_timeout']))) if (isset($_POST['ok'])) { // Save settings - ADMIN_SAVE_SETTINGS($_POST, "_config", "config='0'"); + ADMIN_SAVE_SETTINGS($_POST); } else { // Remember stuff in constants - define('LEAST_CATS_VALUE' , $CONFIG['least_cats']); - define('__CFG_SHOW_REFID' , ADD_SELECTION("yn", $CONFIG['display_refid'], "display_refid")); - define('__TIMEOUT_SELECTION', CREATE_TIME_SELECTIONS($CONFIG['ip_timeout'], "ip_timeout", "Dhm")); - define('__CFG_DBL_EMAIL' , ADD_SELECTION("yn", $CONFIG['check_double_email'], "check_double_email")); - define('__CFG_DBL_PASS' , ADD_SELECTION("yn", $CONFIG['check_double_pass'] , "check_double_pass")); - define('__REF_PAYOUT' , $CONFIG['ref_payout']); + define('LEAST_CATS_VALUE' , $_CONFIG['least_cats']); + define('__CFG_SHOW_REFID' , ADD_SELECTION("yn", $_CONFIG['display_refid'], "display_refid")); + define('__TIMEOUT_SELECTION', CREATE_TIME_SELECTIONS($_CONFIG['ip_timeout'], "ip_timeout", "Dhm")); + define('__CFG_DBL_EMAIL' , ADD_SELECTION("yn", $_CONFIG['check_double_email'], "check_double_email")); + define('__CFG_DBL_PASS' , ADD_SELECTION("yn", $_CONFIG['check_double_pass'] , "check_double_pass")); + define('__REF_PAYOUT' , $_CONFIG['ref_payout']); // Load normal template LOAD_TEMPLATE("admin_config_reg"); } -CLOSE_TABLE(); + // ?>