]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_sponsor.php
Newer sponsor scripts found in backup\! :D :D
[mailer.git] / inc / modules / admin / what-config_sponsor.php
index 22185a82b85aa65e3161cd5b638a807f36755a66..dc81d948a91d5c1daafd365d73bd19b072128c4c 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 12/21/2004 *
- * ===============                              Last change: 12/21/2004 *
+ * M-XChange v0.2.1                                   Start: 12/21/2004 *
+ * ================                             Last change: 12/21/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-config_title.php                            *
  ************************************************************************/
 
 // Some security stuff...
-if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!is_admin()))
-{
+if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!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__));
 
-if (isset($HTTP_POST_VARS['ok']))
-{
+if (isset($_POST['ok'])) {
        // Allow only direct points (non-floating)
-       $HTTP_POST_VARS['sponsor_min_points'] = bigintval($HTTP_POST_VARS['sponsor_min_points']);
-       $HTTP_POST_VARS['sponsor_ref_points'] = bigintval($HTTP_POST_VARS['sponsor_ref_points']);
+       $_POST['sponsor_min_points'] = bigintval($_POST['sponsor_min_points']);
+       $_POST['sponsor_ref_points'] = bigintval($_POST['sponsor_ref_points']);
 
        // Save settings
-       ADMIN_SAVE_SETTINGS($HTTP_POST_VARS, "_config", "config='0'");
-}
- else
-{
+       ADMIN_SAVE_SETTINGS($_POST);
+} else {
        // Remember config data in constants for the template
        define('__SPONSOR_MIN_POINTS', $CONFIG['sponsor_min_points']);
        define('__SPONSOR_REF_POINTS', $CONFIG['sponsor_ref_points']);
@@ -57,5 +54,6 @@ if (isset($HTTP_POST_VARS['ok']))
        // Load template
        LOAD_TEMPLATE("admin_config_sponsor");
 }
+
 //
 ?>