Fixes for turbo_rates vs. bonus_ranks
authorRoland Häder <roland@mxchange.org>
Mon, 6 Oct 2008 17:49:53 +0000 (17:49 +0000)
committerRoland Häder <roland@mxchange.org>
Mon, 6 Oct 2008 17:49:53 +0000 (17:49 +0000)
inc/databases.php
inc/libs/bonus_functions.php
inc/modules/admin/what-config_bonus.php

index 081fad27074d3a2cc4ccaca52eec6aae59559442..e64fee2fcc7064dfb30f3afb4206c548d32b4787 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', "464");
+define('CURR_SVN_REVISION', "465");
 
 // Take a prime number which is long (if you know a longer one please try it out!)
 define('_PRIME', 591623);
index 14041197537088410364f5bdf19f86569af48595..e6d3f69dd59e756881d2773af51a09296378bfca 100644 (file)
@@ -74,7 +74,7 @@ function BONUS_ADD_TURBO_POINTS($mid, $uid, $type)
         else
        {
                // Anything else so let's explode all entered rank points
-               $test = explode(";", $_CONFIG['bonus_ranks']);
+               $test = explode(";", $_CONFIG['turbo_rates']);
                if (!empty($test[$rank - 2]))
                {
                        // Level found
@@ -104,7 +104,7 @@ function BONUS_MAKE_RANK_ROWS($data, $type, $uid)
        $self = false; $OUT = "";
 
        // How many ranks do we have?
-       $ranks = sizeof(explode(";", $_CONFIG['bonus_ranks'])) + 1;
+       $ranks = sizeof(explode(";", $_CONFIG['turbo_rates'])) + 1;
 
        // Load current user's data
        $result = SQL_QUERY_ESC("SELECT level, points, timemark FROM "._MYSQL_PREFIX."_bonus_turbo WHERE %s=%s AND userid=%s LIMIT 1",
index 961168604c62d4f30368044e7e44c5e4909faf52..6515531d3af7331b533f3eaf244eb769c94742f0 100644 (file)
@@ -93,7 +93,7 @@ if (isset($_POST['ok']))
        $RANKS = explode(";", $_CONFIG['turbo_rates']);
 
        // Automatically calculate bonus points for ranks 2 and 3 when not set
-       if (empty($_CONFIG['bonus_ranks'])) $RANKS = array(round($_CONFIG['turbo_bonus'] / 2), round($_CONFIG['turbo_bonus'] / 4));
+       if (empty($_CONFIG['turbo_rates'])) $RANKS = array(round($_CONFIG['turbo_bonus'] / 2), round($_CONFIG['turbo_bonus'] / 4));
 
        // Generate list
        $OUT = "<OL start=\"2\">\n";