From: moodler Date: Mon, 8 Dec 2003 13:03:41 +0000 (+0000) Subject: Fixing a typo I spotted in the CVS diffs. :-) X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=26d2f5fb4a6bd9835b50120662d00852c98d7779;p=moodle.git Fixing a typo I spotted in the CVS diffs. :-) --- diff --git a/mod/workshop/lib.php b/mod/workshop/lib.php index bc5f4da9e6..b8e7e8a1e4 100644 --- a/mod/workshop/lib.php +++ b/mod/workshop/lib.php @@ -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 "
".get_string("thegradeis", "workshop").": ".number_format($assessment->grade, 2)." (". get_string("maximumgrade")." ".number_format($workshop->grade, 0).")

\n"; }