
07-18-2010, 09:38 AM
|
|
|
Join Date: Oct 2007
Location: UK
Posts: 2,802
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by alexm
Does anyone know how to make it so that an attachment is mandatory? Or at least if there is no attachment then put something in the custom output saying so?
|
Using the quoted code:
I've added line which prevents form being submitted if there are no attachments.
Quote:
Originally Posted by bananalive
Form Hook: Before Submit:
PHP Code:
if (empty($postattach))
{
$currentattaches = $db->query_read("
SELECT dateline, filename, attachmentid
FROM " . TABLE_PREFIX . "attachment
WHERE posthash = '" . $db->escape_string($posthash) . "'
AND userid = " . $vbulletin->userinfo['userid']
);
while ($attach = $db->fetch_array($currentattaches))
{
$postattach["$attach[attachmentid]"] = $attach;
$attachcount++;
$formoutput = str_replace('[attach]'.$attachcount.'[/attach]','[attach]'.$attach['attachmentid'].'[/attach]',$formoutput);
}
}
if ($attachcount == 0)
{
$complete = false;
}
Then use this in Custom Form Output:
|
|