function stats_report_activity_audit_form_validate
Search API
| 7.x reports.activity-audit.inc | stats_report_activity_audit_form_validate($form, $form_state) |
File
- modules/
stats/ reports.activity-audit.inc, line 66
Code
function stats_report_activity_audit_form_validate($form, $form_state) {
$start = $form_state ['values']['start_date'];
$end = $form_state ['values']['end_date'];
if ($end == '') {
$end = date('Y-m-d');
}
if ($start == '') {
$start = date('Y-m-d');
}
if ($start > $end) {
form_error('start_date', t("You have selected a Start date which occurs after the End date. Please review and try again."));
return;
}
}
