From: stronk7 Date: Thu, 25 Sep 2003 19:40:25 +0000 (+0000) Subject: Fixed small error in overallocation field !! :-) X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=7b6d108076723f9c97c4fb0975336885211b1a67;p=moodle.git Fixed small error in overallocation field !! :-) --- diff --git a/mod/workshop/backuplib.php b/mod/workshop/backuplib.php index 2674c608ae..d092f235ca 100644 --- a/mod/workshop/backuplib.php +++ b/mod/workshop/backuplib.php @@ -67,7 +67,7 @@ fwrite ($bf,full_tag("GRADE",4,false,$workshop->grade)); fwrite ($bf,full_tag("NTASSESSMENTS",4,false,$workshop->ntassessments)); fwrite ($bf,full_tag("NSASSESSMENTS",4,false,$workshop->nsassessments)); - fwrite ($bf,full_tag("OVERALLOCATION",4,false,$workshop->nsassessments)); + fwrite ($bf,full_tag("OVERALLOCATION",4,false,$workshop->overallocation)); fwrite ($bf,full_tag("TIMEMODIFIED",4,false,$workshop->timemodified)); fwrite ($bf,full_tag("MERGEGRADES",4,false,$workshop->mergegrades)); fwrite ($bf,full_tag("TEACHERWEIGHT",4,false,$workshop->teacherweight));