wernis extension is now alpha code (only listing in admin area is missing), naming...
[mailer.git] / inc / reset / reset_daily.php
index 53a30fc828dee3c66d50770a437b44a61e54b6a0..c3b99df313c413adebdc4001827b5ebdf2082230 100644 (file)
@@ -56,15 +56,15 @@ if (SQL_NUMROWS($result_daily) > 0)
        while (list($uid) = SQL_FETCHROW($result_daily))
        {
                $result_points = SQL_QUERY_ESC("SELECT ref_depth, locked_points FROM "._MYSQL_PREFIX."_user_points
-WHERE userid=%d AND locked_points != '0.00000' ORDER BY ref_depth",
+WHERE userid=%d AND locked_points != 0.00000 ORDER BY ref_depth",
                 array(bigintval($uid)), __FILE__, __LINE__);
                if (SQL_NUMROWS($result_points) > 0)
                {
                        // Ok transfer points
                        while (list($dep, $locked) = SQL_FETCHROW($result_points))
                        {
-                               $result_update = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_points SET points=points+%s, locked_points='0.00000'
-WHERE userid=%d AND ref_depth='%s' LIMIT 1",
+                               $result_update = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_points SET points=points+%s, locked_points=0.00000
+WHERE userid=%d AND ref_depth=%d LIMIT 1",
                                 array($locked, bigintval($uid), $dep), __FILE__, __LINE__);
 
                                // Update mediadata as well
@@ -85,7 +85,7 @@ WHERE userid=%d AND ref_depth='%s' LIMIT 1",
 SQL_FREERESULT($result_daily);
 
 // Save config value for later references
-$CONFIG['last_update'] = time();
+$_CONFIG['last_update'] = time();
 
 // Update database
 $result_daily = SQL_QUERY("UPDATE "._MYSQL_PREFIX."_config SET last_update=UNIX_TIMESTAMP()