0.00000 ORDER BY `ref_depth` ASC", array(bigintval($content['userid'])), __FILE__, __LINE__); //* DEBUG: */ debugOutput(basename(__FILE__) . ':payout=0;points|numRows=' . SQL_NUMROWS($result_points)); if (!SQL_HASZERONUMS($result_points)) { // Ok transfer points while ($content2 = SQL_FETCHARRAY($result_points)) { // Merge both arrays $content = merge_array($content, $content2); //* DEBUG: */ debugOutput(basename(__FILE__) . ':userid=' . $content['userid'].',depth='.$content['ref_depth'].',locked='.$content['locked_points']); addSql(SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_points` SET `points`=`points`+%s, `locked_points`=0.00000 WHERE `userid`=%s AND `ref_depth`=%s LIMIT 1", array( $content['locked_points'], bigintval($content['userid']), $content['ref_depth'] ), __FILE__, __LINE__, false)); // Update mediadata as well if (isExtensionInstalledAndNewer('mediadata', '0.0.4')) { // Update database updateMediadataEntry(array('total_points'), 'add', $content['locked_points']); } // END - if } // END - while } // END - if // Free memory SQL_FREERESULT($result_points); } // END - while // Run all SQLs runFilterChain('run_sqls'); } // END - if // Free memory SQL_FREERESULT($result_daily); // Debug line //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Daily reset ended.'); // [EOF] ?>