When submitting a submission from the Administration dialog as an instructor, it seems that the submission date and the last saved date are set to just before the deadline in case the actual last save date was later. This is wrong when the assignment has a deadline extension in addition to the deadline. In that case the last save date should not be adjusted (that is suspicious anyway) and the submission date should be set tot the last save date.

Submitted by Eelco Visser on 16 March 2015 at 14:41

On 16 March 2015 at 14:41 Eelco Visser tagged urgent

On 20 March 2015 at 12:30 Eelco Visser tagged 0.46.2

On 20 March 2015 at 12:30 Eelco Visser commented:

Added this to next release; this is a bad bug.


On 24 November 2015 at 08:55 Elmer van Chastelet commented:

What if there is no last saved date yet, should the submission date and last saved date be set to max(deadline, extension)?


On 26 November 2015 at 07:22 Elmer van Chastelet tagged 0.46.1

On 26 November 2015 at 07:22 Elmer van Chastelet removed tag 0.46.2

On 3 December 2015 at 14:34 Elmer van Chastelet tagged 0.46.2

On 3 December 2015 at 14:34 Elmer van Chastelet removed tag 0.46.1

On 17 December 2015 at 11:39 Elmer van Chastelet closed this issue.

On 17 December 2015 at 11:41 Elmer van Chastelet commented:

The chosen instructor submit date is now shown below the instructor submit buttons, using this logic:

var mom : DateTime;
if(lastSavedAt != null){
  mom := lastSavedAt;
} else {
  var dl := deadline();
  mom := if(dl!=null) add(dl, minutes(-1L)) else now();
}

Log in to post comments