View Single Post
  #2  
Old 24th October 2008, 22:30
kp380lv's Avatar
kp380lv kp380lv is offline
Senior Member
 
Join Date: May 2008
Latvia
Posts: 388
Default
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__);
Reply With Quote