Thread: Please Help
View Single Post
  #2  
Old 11th July 2008, 23:55
Neptune
Guest
 
Posts: n/a
Default Re: Please Help
in announce.php + details.php + include/bittorrent.php

Code:
if ($ratio < 0.5 || $gigs < 5) $wait = 48;
			elseif ($ratio < 0.65 || $gigs < 6.5) $wait = 24;
			elseif ($ratio < 0.8 || $gigs < 8) $wait = 12;
			elseif ($ratio < 0.95 || $gigs < 9.5) $wait = 6;
			else $wait = 0;
set waits to 0 (zero)

and about bbcode
in details.php

change

Code:
format_urls(htmlspecialchars($row["descr"])))
with

Code:
format_comment(htmlspecialchars($row["descr"])))
Reply With Quote