You could try using this and see if it works:
PHP Code:
If(!is_array($_FILES['attachment']) OR !array_sum($_FILES['attachment']['size'])) {
$error.="You did not attach any files.<br />";
}
Put it between:
PHP Code:
If(trim($yourmessage)=="") {
$error.="You did not enter a message!<br />";
}
And
PHP Code:
// Verify Attchment info
If($allowattach > 0) {
Like:
PHP Code:
If(trim($yourmessage)=="") {
$error.="You did not enter a message!<br />";
}
If(!is_array($_FILES['attachment']) OR !array_sum($_FILES['attachment']['size'])) {
$error.="You did not attach any files.<br />";
}
// Verify Attchment info
If($allowattach > 0) {