X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fmodules%2Fadmin%2Fwhat-config_reg.php;h=d1e56fb116df425befdbe50a11420a813ac66b73;hb=6032b7018b83778f1592383238f4e0d28f718622;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..d1e56fb116 100644 --- a/inc/modules/admin/what-config_reg.php +++ b/inc/modules/admin/what-config_reg.php @@ -38,12 +38,9 @@ if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN())) require($INC); } -global $link; - // Add description as navigation point ADD_DESCR("admin", basename(__FILE__)); -OPEN_TABLE("100%", "admin_content admin_content_align", ""); if ((isset($_POST['ok'])) && (function_exists('CREATE_TIME_SELECTIONS'))) { // Calculate timestamp from selections... @@ -57,21 +54,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(); + // ?>