You are here

function support_substatus_support_filter_form_submit_alter in Support Ticketing System 6

File

support_substatus/support_substatus.module, line 449
Support Substatus -- allows per-status sub-status values, so for example a "pending" ticket can be further marked with "needs review", etc. @author Jeremy Andrews <jeremy@tag1consulting.com> @package Support

Code

function support_substatus_support_filter_form_submit_alter(&$form_state) {
  if (!empty($form_state['values']['ssid'])) {
    $form_state['support_filter_query']['ssid'] = implode(',', $form_state['values']['ssid']);
  }
}