]> git.mjollnir.org Git - moodle.git/commitdiff
Fixed date format
authormoodler <moodler>
Fri, 30 Jan 2004 15:16:04 +0000 (15:16 +0000)
committermoodler <moodler>
Fri, 30 Jan 2004 15:16:04 +0000 (15:16 +0000)
mod/quiz/report/overview/report.php

index 8179c6f4ceb61ef9b3c65a56cc639b86edb37911..85e9b7b1d0470ed873d20b59a96b0f86997fef64 100644 (file)
@@ -123,7 +123,7 @@ class quiz_report extends quiz_default_report {
             $attemptgrade = format_float(($attempt->sumgrades / $quiz->sumgrades) * $quiz->grade);
             $attemptdate = userdate($attempt->timestart, $timeformat);
             if ($attempt->timefinish) {
-                $attemptlapse = date("I:s", $attempt->timefinish - $attempt->timestart);
+                $attemptlapse = date("i:s", $attempt->timefinish - $attempt->timestart);
             } else {
                 $attemptlapse = "...";
             }