Thread: Recover
View Single Post
  #3  
Old 14th August 2009, 22:07
pdq pdq is offline
TBDev BANNED Warrior
 
Join Date: Sep 2008
P2P
Posts: 46
Default
since you do this check:
PHP Code:
 if (!is_valid_id($_GET["id"]))
            
stderr($tracker_lang['error'], $tracker_lang['invalid_id']); 


this is all you need to do:
PHP Code:
  $id $_GET['id']; 
=]
Reply With Quote