]> git.mxchange.org Git - mailer.git/commitdiff
Some more fixes
authorRoland Häder <roland@mxchange.org>
Sat, 6 Dec 2008 17:49:34 +0000 (17:49 +0000)
committerRoland Häder <roland@mxchange.org>
Sat, 6 Dec 2008 17:49:34 +0000 (17:49 +0000)
inc/databases.php
inc/extensions/ext-other.php
inc/libs/beg_functions.php
inc/libs/rallye_functions.php

index 715dd6791ea7d1f70e5af236633632387f722a56..86ea2bcafe38b34857babd3c24f9fb060829b9ed 100644 (file)
@@ -114,7 +114,7 @@ define('USAGE_BASE', "usage");
 define('SERVER_URL', "http://www.mxchange.org");
 
 // Current SVN revision
-define('CURR_SVN_REVISION', "605");
+define('CURR_SVN_REVISION', "606");
 
 // Take a prime number which is long (if you know a longer one please try it out!)
 define('_PRIME', 591623);
index 23454d623b093fdc9451c01cd6e6a8457a8bafad..449247ea9144ac1722a826339a1f5d0aa753cae7 100644 (file)
@@ -189,7 +189,7 @@ case "update": // Update an extension
                break;
 
        case "0.2.1": // SQL queries for v0.2.1
-               $SQLs[] = "ALTER TABLE `"._MYSQL_PREFIX."_config` `min_age` TINYINT(3) UNSIGNED NOT NULL DEFAULT 16";
+               $SQLs[] = "ALTER TABLE `"._MYSQL_PREFIX."_config` ADD `min_age` TINYINT(3) UNSIGNED NOT NULL DEFAULT 16";
 
                // Update notes (these will be set as task text!)
                $UPDATE_NOTES = "Minimumalter ist nun konfigurierbar.";
index 583ec4c8a817bbd5cf9b7055d2ca93d39f9c8729..adfd3f549236fcf897dc433dea8b0a1991b2ba05 100644 (file)
@@ -38,12 +38,12 @@ if (!defined('__SECURITY')) {
 }
 
 // Add points to user or begging rallye account
-function BEG_ADD_POINTS($uid, $points) {
+function BEG_ADD_POINTS ($uid, $points) {
        global $_CONFIG;
 
        // Set mode depending on how many mails the member has to confirm
        $locked = false;
-       if (($ref_payout > 0) && ($_CONFIG['allow_direct_pay'] == "N")) $locked = true;
+       if (($_CONFIG['ref_payout'] > 0) && ($_CONFIG['allow_direct_pay'] == "N")) $locked = true;
 
        // Is begging rallye active?
        if ($_CONFIG['beg_rallye'] == "Y") {
index 960f78d67a25fa5886e58545e3f9368630783d44..f7528f9063b59416534f4c29677171d3be4ef04e 100644 (file)
@@ -542,7 +542,7 @@ FROM "._MYSQL_PREFIX."_user_points AS p
 LEFT JOIN "._MYSQL_PREFIX."_user_data AS d
 ON p.userid=d.userid
 WHERE d.status='CONFIRMED' AND d.max_mails > 0 AND d.mails_confirmed >= %s AND p.ref_depth=1 AND p.points > 0 AND d.userid=%s",
- array($_CONFIG['ref_payout'], bigintval($uid)), __FILE__, __LINE__);
                      array($_CONFIG['ref_payout'], bigintval($uid)), __FILE__, __LINE__);
                list($refpoints) = SQL_FETCHROW($result_ref);
                SQL_FREERESULT($result_ref);