function classified_form_submit in Classified Ads 6.3
Same name and namespace in other branches
- 7.3 classified.module \classified_form_submit()
Submit handler for node form: normalize node form values.
1 string reference to 'classified_form_submit'
- classified_form in ./
classified.module - Implements hook_form().
File
- ./
classified.module, line 1013 - A pure D6 classified ads module inspired by the ed_classified module.
Code
function classified_form_submit(&$form, &$form_state) {
$form_state['values']['expire_date_ts'] = _classified_get_timestamp_from_date($form_state['values']['expire_date']);
}