From 392bea48385686e8c7c85396c0cdd71460fdfd14 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Sat, 13 Sep 2008 17:44:19 +0000 Subject: [PATCH] Missing bonus_rates fixed to bonus_ranks --- inc/databases.php | 2 +- inc/libs/bonus_functions.php | 4 ++-- inc/modules/admin/what-config_bonus.php | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/inc/databases.php b/inc/databases.php index d9e4876e1c..ad65169cee 100644 --- a/inc/databases.php +++ b/inc/databases.php @@ -114,7 +114,7 @@ define('USAGE_BASE', "usage"); define('SERVER_URL', "http://www.mxchange.org"); // This current patch level -define('CURR_SVN_REVISION', "319"); +define('CURR_SVN_REVISION', "320"); // Take a prime number which is long (if you know a longer one please try it out!) define('_PRIME', 591623); diff --git a/inc/libs/bonus_functions.php b/inc/libs/bonus_functions.php index 366606a243..ea963dd66c 100644 --- a/inc/libs/bonus_functions.php +++ b/inc/libs/bonus_functions.php @@ -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_rates']); + $test = explode(";", $_CONFIG['bonus_ranks']); 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_rates'])) + 1; + $ranks = sizeof(explode(";", $_CONFIG['bonus_ranks'])) + 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", diff --git a/inc/modules/admin/what-config_bonus.php b/inc/modules/admin/what-config_bonus.php index edf24bfc67..5641b9c5cf 100644 --- a/inc/modules/admin/what-config_bonus.php +++ b/inc/modules/admin/what-config_bonus.php @@ -89,10 +89,10 @@ if (isset($_POST['ok'])) ADD_MEMBER_SELECTION_BOX($_CONFIG['bonus_uid'], false, true, true); // Initialize array for the points list - $RANKS = explode(";", $_CONFIG['bonus_rates']); + $RANKS = explode(";", $_CONFIG['bonus_ranks']); // Automatically calculate bonus points for ranks 2 and 3 when not set - if (empty($_CONFIG['bonus_rates'])) $RANKS = array(round($_CONFIG['turbo_bonus'] / 2), round($_CONFIG['turbo_bonus'] / 4)); + if (empty($_CONFIG['bonus_ranks'])) $RANKS = array(round($_CONFIG['turbo_bonus'] / 2), round($_CONFIG['turbo_bonus'] / 4)); // Generate list $OUT = "
    \n"; -- 2.30.2