query masking rewritten in more SQLs, several cleanups and fix on beg link
[mailer.git] / inc / modules / admin / what-config_bonus.php
index 4fd94922c491d5e233a37c01c63c498981d6e4ef..5c351478a5d0f483049ae742e6a22c8f7e715fc1 100644 (file)
@@ -63,7 +63,7 @@ if (isset($_POST['ok']))
        if (empty($_POST['turbo_rates'])) $_POST['turbo_rates'] = "".round($CONFIG['turbo_bonus'] / 2).";".round($CONFIG['turbo_bonus'] / 4)."";
 
        // Save data
-       ADMIN_SAVE_SETTINGS($_POST, "_config", "config='0'");
+       ADMIN_SAVE_SETTINGS($_POST);
 
        // Remember new settings
        $CONFIG['bonus_active']    = $_POST['bonus_active'];
@@ -71,7 +71,7 @@ if (isset($_POST['ok']))
        $CONFIG['bonus_di_notify'] = $_POST['bonus_di_notify'];
 
        // Include sending out mails
-       if ((($CONFIG['bonus_active'] == "Y") && ($CONFIG['bonus_en_notify'] == "Y")) || (($CONFIG['bonus_active'] == "N") && ($CONFIG['bonus_di_notify'] == "Y")))
+       if ((($CONFIG['bonus_active'] == 'Y') && ($CONFIG['bonus_en_notify'] == 'Y')) || (($CONFIG['bonus_active'] == 'N') && ($CONFIG['bonus_di_notify'] == 'Y')))
        {
                include(PATH."inc/mails/bonus_mails.php");
        }
@@ -121,12 +121,12 @@ if (isset($_POST['ok']))
        // Activate / Deactivate bonus active rallye (Y/N)
        switch ($CONFIG['bonus_active'])
        {
-       case "Y":
+       case 'Y':
                define('__BONUS_ACTIVE_Y', " checked");
                define('__BONUS_ACTIVE_N', "");
                break;
 
-       case "N":
+       case 'N':
                define('__BONUS_ACTIVE_Y', "");
                define('__BONUS_ACTIVE_N', " checked");
                break;
@@ -134,108 +134,108 @@ if (isset($_POST['ok']))
        // Other bonus to de-/activate
        switch ($CONFIG['bonus_login_yn'])
        {
-       case "Y":
+       case 'Y':
                define('__BONUS_LOGIN_Y', " checked");
                define('__BONUS_LOGIN_N', "");
                break;
 
-       case "N":
+       case 'N':
                define('__BONUS_LOGIN_Y', "");
                define('__BONUS_LOGIN_N', " checked");
                break;
        }
        switch ($CONFIG['bonus_stats_yn'])
        {
-       case "Y":
+       case 'Y':
                define('__BONUS_STATS_Y', " checked");
                define('__BONUS_STATS_N', "");
                break;
 
-       case "N":
+       case 'N':
                define('__BONUS_STATS_Y', "");
                define('__BONUS_STATS_N', " checked");
                break;
        }
        switch ($CONFIG['bonus_order_yn'])
        {
-       case "Y":
+       case 'Y':
                define('__BONUS_ORDER_Y', " checked");
                define('__BONUS_ORDER_N', "");
                break;
 
-       case "N":
+       case 'N':
                define('__BONUS_ORDER_Y', "");
                define('__BONUS_ORDER_N', " checked");
                break;
        }
        switch ($CONFIG['bonus_ref_yn'])
        {
-       case "Y":
+       case 'Y':
                define('__BONUS_REF_Y', " checked");
                define('__BONUS_REF_N', "");
                break;
 
-       case "N":
+       case 'N':
                define('__BONUS_REF_Y', "");
                define('__BONUS_REF_N', " checked");
                break;
        }
        switch ($CONFIG['bonus_click_yn'])
        {
-       case "Y":
+       case 'Y':
                define('__BONUS_CLICK_Y', " checked");
                define('__BONUS_CLICK_N', "");
                break;
 
-       case "N":
+       case 'N':
                define('__BONUS_CLICK_Y', "");
                define('__BONUS_CLICK_N', " checked");
                break;
        }
        switch ($CONFIG['bonus_en_notify'])
        {
-       case "Y":
+       case 'Y':
                define('__BONUS_EN_NOTIFY_Y', " checked");
                define('__BONUS_EN_NOTIFY_N', "");
                break;
 
-       case "N":
+       case 'N':
                define('__BONUS_EN_NOTIFY_Y', "");
                define('__BONUS_EN_NOTIFY_N', " checked");
                break;
        }
        switch ($CONFIG['bonus_di_notify'])
        {
-       case "Y":
+       case 'Y':
                define('__BONUS_DI_NOTIFY_Y', " checked");
                define('__BONUS_DI_NOTIFY_N', "");
                break;
 
-       case "N":
+       case 'N':
                define('__BONUS_DI_NOTIFY_Y', "");
                define('__BONUS_DI_NOTIFY_N', " checked");
                break;
        }
        switch ($CONFIG['bonus_new_mem_notify'])
        {
-       case "Y":
+       case 'Y':
                define('__BONUS_NEW_MEMBER_NOTIFY_Y', " checked");
                define('__BONUS_NEW_MEMBER_NOTIFY_N', "");
                break;
 
-       case "N":
+       case 'N':
                define('__BONUS_NEW_MEMBER_NOTIFY_Y', "");
                define('__BONUS_NEW_MEMBER_NOTIFY_N', " checked");
                break;
        }
        switch ($CONFIG['bonus_include_own'])
        {
-       case "Y":
+       case 'Y':
                define('__BONUS_INCLUDE_OWN_Y', " checked");
                define('__BONUS_INCLUDE_OWN_N', "");
                break;
 
-       case "N":
+       case 'N':
                define('__BONUS_INCLUDE_OWN_Y', "");
                define('__BONUS_INCLUDE_OWN_N', " checked");
                break;