View Single Post
  #1  
Old 4th October 2008, 11:59
kp380lv's Avatar
kp380lv kp380lv is offline
Senior Member
 
Join Date: May 2008
Latvia
Posts: 388
Lightbulb YSE PRE 7 Cleanup fix by kp380lv
I saw bug with torrents! When seed it and stop seeding - tracker shows that torrent his seeding and bonuses is counting even you re not seeding torrent file!

Open cleanup.php -> Go to line 101

Replace this:

Code:
sql_query("DELETE FROM peers WHERE last_action < FROM_UNIXTIME($deadtime)");
With this:

Code:
sql_query("DELETE FROM peers WHERE last_action < FROM_UNIXTIME($deadtime)") or sqlerr(__FILE__,__LINE__);
Thats all!!:)
Reply With Quote