Quote:
Originally Posted by sabret00the
yes it answers half the question, sorry should've re-read it before i bumped it, basically i want to have this enabled in all public forums but disabled in private (staff) forums and am wondering if this functionality is built in?
|
No it is not, but you can easily add it like this:
edit dt.php, find:
PHP Code:
$foruminfo = &$forum;
after that add:
PHP Code:
if ($thread['forumid']==X OR $thread['forumid']==Y OR $thread['forumid']==Z)
{print_no_permission();}
replace X,Y,Z with the forumids in which you want to stop downloads.