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.

seed_times.php 272B

123456789
  1. <?
  2. //------------- Update seed times ---------------------------------------//
  3. $DB->query("
  4. UPDATE xbt_snatched AS xs
  5. INNER JOIN xbt_files_users AS xfu
  6. ON xs.uid = xfu.uid AND xs.fid = xfu.fid
  7. SET xs.seedtime = xs.seedtime + (xfu.active & ~xfu.completed)");
  8. ?>