1 diff -ur torrentflux.old/html/searchEngines/TorrentBoxEngine.php torrentflux/html/searchEngines/TorrentBoxEngine.php
2 --- torrentflux.old/html/searchEngines/TorrentBoxEngine.php 2008-05-28 20:50:04.000000000 -0300
3 +++ torrentflux/html/searchEngines/TorrentBoxEngine.php 2008-08-08 14:35:15.000000000 -0300
6 $pages = str_replace("/torrents-browse.php?",$this->searchURL()."&",$pages);
8 - $output = "<div align=center>".$pages."</div>";
9 + $output .= "<div align=center>".$pages."</div>";
15 $this->dateAdded = $this->cleanLine($tmpListArr["4"]); // Date Added
16 $this->torrentSize = $this->cleanLine($tmpListArr["5"]); // Size of File
17 - $this->dwnldCount = $this->cleanLine($tmpListArr["6"]); // Download Count
18 - $this->Seeds = $this->cleanLine($tmpListArr["7"]); // Seeds
19 - $this->Peers = $this->cleanLine($tmpListArr["8"]); // Peers
20 + //$this->dwnldCount = $this->cleanLine($tmpListArr["6"]); // Download Count
21 + $this->dwnldCount = 0;
22 + $this->Seeds = $this->cleanLine($tmpListArr["6"]); // Seeds
23 + $this->Peers = $this->cleanLine($tmpListArr["7"]); // Peers
24 //$tmpListArr["9"] = $this->cleanLine($tmpListArr["9"]); // Person who Uploaded it.
26 if ($this->Peers == '')