View Single Post
  #2  
Old 29th February 2012, 07:08
wxlg1117 wxlg1117 is offline
Senior Member
 
Join Date: Aug 2009
China
Posts: 16
Default
The bug that new torrents shown as dead even ive they are seeded fine
\include\cleanup.php
Code:
sql_query("UPDATE torrents SET visible='no' WHERE visible='yes' AND last_action < FROM_UNIXTIME($deadtime)");
fix :
Code:
sql_query("UPDATE torrents SET visible='no' WHERE visible='yes' AND last_action < $deadtime");
Reply With Quote
The Following User Says Thank You to wxlg1117 For This Useful Post:
Tones (14th November 2012)