Quote:
Originally Posted by clubvr4
Hello great hack!
Is it possible to make attachments mandatory?
|
Edit Form -> Form Hooks -> Form Hook: Before Submit:
PHP Code:
$currentattaches = $db->query_first("SELECT COUNT(*) AS countrows FROM " . TABLE_PREFIX . "attachment WHERE posthash = '" . $db->escape_string($posthash) . "' AND userid = " . $vbulletin->userinfo['userid'] );
$attachcount = $currentattaches['countrows'];
if (!$attachcount)
{
$complete = false;
$customerror .= '<div class="blockrow"><div>Error, No attachments!</div></div>';
}