Fix for double-included file
authorRoland Häder <roland@mxchange.org>
Tue, 7 Oct 2008 00:42:10 +0000 (00:42 +0000)
committerRoland Häder <roland@mxchange.org>
Tue, 7 Oct 2008 00:42:10 +0000 (00:42 +0000)
inc/databases.php
inc/modules/admin/what-config_beg.php
inc/modules/admin/what-config_bonus.php

index ef7c4bcebc8e479e029a18d0f319d48d14b6fab2..798fcef80a530dad82e0a59c389023d77b33d8c1 100644 (file)
@@ -113,7 +113,7 @@ define('USAGE_BASE', "usage");
 define('SERVER_URL', "http://www.mxchange.org");
 
 // This current patch level
-define('CURR_SVN_REVISION', "473");
+define('CURR_SVN_REVISION', "474");
 
 // Take a prime number which is long (if you know a longer one please try it out!)
 define('_PRIME', 591623);
index 5342beb5ad4a77e051c4c70c38f1ae8d4573f7a5..b9911aab76fae93cfc6975df3316a0268092af56 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'])) {
        // Translate german decimal commas to computer decimal dots
        $_POST['beg_points']       = REVERT_COMMA($_POST['beg_points']      );
        $_POST['beg_points_max']   = REVERT_COMMA($_POST['beg_points_max']  );
@@ -54,15 +53,7 @@ if (isset($_POST['ok']))
        $_CONFIG['beg_rallye']        = $_POST['beg_rallye'];
        $_CONFIG['beg_ral_en_notify'] = $_POST['beg_ral_en_notify'];
        $_CONFIG['beg_ral_di_notify'] = $_POST['beg_ral_di_notify'];
-
-       // Include sending out mails
-       if ((($_CONFIG['beg_rallye'] == "Y") && ($_CONFIG['beg_ral_en_notify'] == "Y")) || (($_CONFIG['beg_rallye'] == "N") && ($_CONFIG['beg_ral_di_notify'] == "Y")))
-       {
-               include(PATH."inc/mails/beg_mails.php");
-       }
-}
- else
-{
+} else {
        // Prepare constants for the template
        define('__BEG_POINTS'           , TRANSLATE_COMMA($_CONFIG['beg_points']      , false));
        define('__BEG_POINTS_MAX'       , TRANSLATE_COMMA($_CONFIG['beg_points_max']  , false));
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));