--- loncom/html/adm/helper/newslot.helper 2006/03/07 16:29:14 1.14
+++ loncom/html/adm/helper/newslot.helper 2006/04/24 23:23:18 1.15
@@ -64,6 +64,12 @@
return &{$helper->{DATA}{origslot}}('endtime');
+
+ if ($val < $helper->{'VARS'}{'starttime'}) {
+ return 'End time must be later than the start time.';
+ }
+ return undef;
+
Type:
@@ -96,6 +102,12 @@
return &{$helper->{DATA}{origslot}}('startreserve','anytime');
+
+ if (defined($val) && $val > $helper->{'VARS'}{'starttime'}) {
+ return 'Reservation time must come before the slot has started.';
+ }
+ return undef;
+
Maxium number of students allowed in this slot:
@@ -128,6 +140,12 @@
if (ref($default)) { return $default->[1]; }
return 'anytime';
+
+ if (defined($val) && $val < $helper->{'VARS'}{'startunique'}) {
+ return 'End time must be later than the start time.';
+ }
+ return undef;
+