typo error in moodle v1.9 quiz module

typo error in moodle v1.9 quiz module

by vic estilo -
Number of replies: 2

Hi Tim,

I just found this little issue in the 1.9 quiz module.. Perhaps a typo error smile

File:mod/quiz/report/overview/report.php

line 477: $row[] = '<a href="review.php?q='.$quiz->id.'&amp;attempt='.$attempt->attempt.'">'.$timestart.'</a>';
** $timestart should be replaced by $timefinish

line479: $row[] = '<a href="review.php?q='.$quiz->id.'&amp;attempt='.$attempt->attempt.'">'.$timefinish.'</a>';
** line should be $row[]= $timefinish;

Average of ratings: -
In reply to vic estilo

Re: typo error in moodle v1.9 quiz module

by Tim Hunt -
Picture of Core developers Picture of Documentation writers Picture of Particularly helpful Moodlers Picture of Peer reviewers Picture of Plugin developers
What a coincidence. Someone at the OU reported this today too. I'd better fix it.
In reply to vic estilo

Re: typo error in moodle v1.9 quiz module

by Tim Hunt -
Picture of Core developers Picture of Documentation writers Picture of Particularly helpful Moodlers Picture of Peer reviewers Picture of Plugin developers
That is indeed exactly the right fix. It is now checked in (MDL-14391). Thank you for saving my time.