From: rkingdon Date: Thu, 16 Oct 2003 17:17:19 +0000 (+0000) Subject: Fixed bug stopping the calculation of final grades. X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=7c54bd509a4646387cf7c1250ba84e6209a06b2a;p=moodle.git Fixed bug stopping the calculation of final grades. --- diff --git a/mod/workshop/submissions.php b/mod/workshop/submissions.php index 4ac89a60e6..0cf473289f 100644 --- a/mod/workshop/submissions.php +++ b/mod/workshop/submissions.php @@ -781,7 +781,7 @@ error("Only teachers can look at this page"); } - if ($workshop->phase != 4) { // is this at the expected phase? + if ($workshop->phase != 5) { // is this at the expected phase? print_heading(get_string("assignmentnotinthecorrectphase", "workshop")); print_continue("view.php?a=$workshop->id"); }