1
Hi,
topten.php of both mylinks and mydownloads, which handles the top ten hits or ranking of links and downloads, does not work with
register_globals off. It has something to do with the code near ines 33-35:
if(isset($rate)){
$sort = _MD_RATING;
$sortDB = "rating";
}else{
$sort = _MD_HITS;
$sortDB = "hits";
}
I had to change it to "
if(isset($_GET['rate'])){" for it work.
Hope this helps.