]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_reg.php
Security line in all includes changed
[mailer.git] / inc / modules / admin / what-config_reg.php
index aa0324940793f2bc4f0e5453a548038cffa643cf..9c5922d27e3cb0d6eaa6995a98ee23243f7a7de6 100644 (file)
  ************************************************************************/
 
 // 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__));
 
-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();
+
 //
 ?>