Quote:
Originally Posted by Xenon
very easy to do:
open showthread.php
find:
PHP Code:
// *********************************************************************************
// get thread info
$thread = verify_id('thread', $threadid, 1, 1);
$threadinfo = &$thread;
and below add:
PHP Code:
if ($threadinfo['threadid'] == xx AND $bbuserinfo['posts'] < yy)
{
print_no_permission();
}
|
excellent....now my only question....only the items in RED are what i replace with the thread id number and the number of posts required, but only in the code that i ADD...i don't have to change anything in the original code in showthread?
just want to confirm this.