resend_form_validate
Definition
resend_form_validate($form_id, $form_values, $form)
simpletestauto.module, line 372
Code
<?php
function resend_form_validate($form_id, $form_values, $form) {
if ($form_values['test_status'] != SIMPLETESTAUTO_PASS && $form_values['test_status'] != SIMPLETESTAUTO_FAIL) {
//form_set_error('resend', t('You can only resend tests that are finished.'));
}
}
?> 