Contribution Date
              Technology
              
          Contribution Project
              
          Contribution Details
              this should help in resolving the conflict with workflow.module
/**
 * Implements hook_form_alter().
 */
function HOOK_form_alter(&$form, &$form_state, $form_id) {
  foreach ($form['actions'] as $id => &$button) {
    if ($id == '#type') {
      continue;
    }
    if (substr($id, 0, 8) == 'workflow') {
      $button['#validate'][] = 'ife_form_validator';
    }
  }
}
Issue Status
              Active
          Contribution Issue Link
              
          Contribution Link
              
          Files count
              0
          Patches count
              0