Added date check

SVN revision: 1139
This commit is contained in:
Stefan Ritt 2004-12-05 11:52:53 +00:00
parent ec9fa88f3c
commit fff6555663

View File

@ -6,6 +6,9 @@
Contents: Web server program for Electronic Logbook ELOG Contents: Web server program for Electronic Logbook ELOG
$Log$ $Log$
Revision 1.517 2004/12/05 11:52:53 midas
Added date check
Revision 1.516 2004/12/05 11:40:52 midas Revision 1.516 2004/12/05 11:40:52 midas
Implemented 'sort attribute' Implemented 'sort attribute'
@ -16329,6 +16332,11 @@ void submit_elog(LOGBOOK * lbs)
tms.tm_hour = 12; tms.tm_hour = 12;
ltime = mktime(&tms); ltime = mktime(&tms);
if (ltime == -1) {
show_error(loc("Date must be between 1970 and 2037"));
return;
}
sprintf(attrib[i], "%d", ltime); sprintf(attrib[i], "%d", ltime);
} }
} }