View Single Post
  #80  
Old 28th October 2008, 11:58
Krypto Krypto is offline
Retired from BVList
 
Join Date: Jan 2008
P2P
Posts: 510
Default
In announce.php

Find
PHP Code:
if (!$check AND $seeder == "yes")mysql_query("INSERT INTO ".$db_prefix."_snatched (torrent, torrentid, userid, ip, port, startdat, last_action, agent, torrent_name, torrent_category, finished, completed) VALUES ($torrentid$torrentid$uid, '".$ip."', $port, NOW(), NOW(), '" $agent "' , '" addslashes($torrentname) . "', $torrentcategory, 'yes, NOW())")or err(mysql_error()); 
Replace
PHP Code:
if (!$check AND $seeder == "yes")mysql_query("INSERT INTO ".$db_prefix."_snatched (torrent, torrentid, userid, ip, port, startdat, last_action, agent, torrent_name, torrent_category, finished, completedat) VALUES ($torrentid$torrentid$uid, '".$ip."', $port, NOW(), NOW(), '" $agent "' , '" addslashes($torrentname) . "', $torrentcategory, 'yes', NOW())")or err(mysql_error()); 
Reply With Quote