Oppaitime's version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

freeleech.php 677B

12345678910111213141516171819202122232425262728
  1. <?
  2. //------------- Freeleech -----------------------------------------------//
  3. //We use this to control 6 hour freeleeches. They're actually 7 hours, but don't tell anyone.
  4. /*
  5. $TimeMinus = time_minus(3600 * 7);
  6. $DB->query("
  7. SELECT DISTINCT GroupID
  8. FROM torrents
  9. WHERE FreeTorrent = '1'
  10. AND FreeLeechType = '4'
  11. AND Time < '$TimeMinus'");
  12. while (list($GroupID) = $DB->next_record()) {
  13. $Cache->delete_value("torrents_details_$GroupID");
  14. $Cache->delete_value("torrent_group_$GroupID");
  15. }
  16. $DB->query("
  17. UPDATE torrents
  18. SET FreeTorrent = '0',
  19. FreeLeechType = '0'
  20. WHERE FreeTorrent = '1'
  21. AND FreeLeechType = '4'
  22. AND Time < '$TimeMinus'");
  23. */
  24. ?>