simpletestauto_test_node_form_validate

Definition

simpletestauto_test_node_form_validate($form_id, $form)
simpletestauto.inc, line 102

Code

<?php
function simpletestauto_test_node_form_validate($form_id, $form) {
  global $form_values;
  $edit = $_POST['edit'];
  $file = file_check_upload('patch_file');
  if ($form_values['patch_url'] == "" && $file == NULL) {
    form_set_error('patch_url', t('Please provide a patch url or upload a new file.'));
  }
  $form_values['file'] = file_save_upload($file);
}
?>