Quote:
Originally Posted by amykhar
I'm trying to figure out a way to make that file edit not necessary either.
|
Hookname: showthread_post_start
PHP Code:
$contractsigned = 1;
// Check to see if a contract is required.
if ($foruminfo['reqcontract'])
{
// Check to see if the user has signed the contract.
$contracts = 0;
$contracts = explode(",",$vbulletin->userinfo['contracts']);
if ($contracts)
{
$contractsigned = in_array($foruminfo['forumid'],$contracts);
}
else
{
$contractsigned = false;
}
if ($show['quickreply'] AND !$contractsigned)
{
$show['quickreply'] = false;
$show['wysiwyg'] = 0;
$quickreply = '';
}
}
Should work