]> git.mjollnir.org Git - moodle.git/commitdiff
Fixing a typo I spotted in the CVS diffs. :-)
authormoodler <moodler>
Mon, 8 Dec 2003 13:03:41 +0000 (13:03 +0000)
committermoodler <moodler>
Mon, 8 Dec 2003 13:03:41 +0000 (13:03 +0000)
mod/workshop/lib.php

index bc5f4da9e6625d85c255030d2561d3b4f76449f9..b8e7e8a1e412847af233ebcfaf201719f052fe03 100644 (file)
@@ -2776,7 +2776,7 @@ function workshop_print_assessment($workshop, $assessment = false, $allowchanges
                        }
                        
                // only show the grade if grading strategy > 0 and the grade is positive
-               if ($showgrades and $workshop>gradingstrategy and $assessment->grade >= 0) { 
+               if ($showgrades and $workshop->gradingstrategy and $assessment->grade >= 0) { 
                        echo "<CENTER><B>".get_string("thegradeis", "workshop").": ".number_format($assessment->grade, 2)." (".
                                get_string("maximumgrade")." ".number_format($workshop->grade, 0).")</B></CENTER><BR CLEAR=ALL>\n";
                        }