From: moodler Date: Thu, 9 Aug 2007 08:48:11 +0000 (+0000) Subject: Removing the space will make this string work better in RTL languages MDL-10768 X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=49e7a95a4c17b45f505faeab68166cbe12185da3;p=moodle.git Removing the space will make this string work better in RTL languages MDL-10768 --- diff --git a/mod/quiz/review.php b/mod/quiz/review.php index fc60e8bb3f..bd20a8ef94 100644 --- a/mod/quiz/review.php +++ b/mod/quiz/review.php @@ -229,7 +229,7 @@ $a->maxgrade = $quiz->grade; $rawscore = round($attempt->sumgrades, $CFG->quiz_decimalpoints); echo '', $strscore, '', - "$rawscore/$quiz->sumgrades ($percentage %)", ''; + "$rawscore/$quiz->sumgrades ($percentage%)", ''; echo '', $strgrade, '', get_string('outof', 'quiz', $a), ''; }