Fix for double-included file
[mailer.git] / inc / modules / admin / what-config_bonus.php
index 21f82932877247067b038d6b8d10567042bb0fe7..53a6e3c884fa390354b07c31c3d2173929734d29 100644 (file)
@@ -40,8 +40,7 @@ if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
 // Add description as navigation point
 ADD_DESCR("admin", basename(__FILE__));
 
-if (isset($_POST['ok']))
-{
+if (isset($_POST['ok'])) {
        // Replace german decimal commas to computer decimal dots
        $_POST['login_bonus']         = REVERT_COMMA($_POST['login_bonus']        );
        $_POST['turbo_bonus']         = REVERT_COMMA($_POST['turbo_bonus']        );
@@ -51,8 +50,7 @@ if (isset($_POST['ok']))
 
        // Generate string for saving ranks
        $_POST['turbo_rates'] = ""; $RATES = array();
-       foreach ($_POST['rate'] as $rate)
-       {
+       foreach ($_POST['rate'] as $rate) {
                $rate = trim(REVERT_COMMA($rate));
                if (isset($rate)) $RATES[] = $rate;
        }
@@ -69,12 +67,6 @@ if (isset($_POST['ok']))
        $_CONFIG['bonus_active']    = $_POST['bonus_active'];
        $_CONFIG['bonus_en_notify'] = $_POST['bonus_en_notify'];
        $_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"))) {
-               // Send mails out!
-               include(PATH."inc/mails/bonus_mails.php");
-       }
 } else {
        // Prepare contants for the template
        define('__LOGIN_VALUE' , TRANSLATE_COMMA($_CONFIG['login_bonus']        , false));