MDL-49121 mod_lesson: Fixed typo in link creation

This commit is contained in:
Rajesh Taneja
2015-03-19 12:24:50 +01:00
committed by Eloy Lafuente (stronk7)
parent 56159e91d7
commit 909064a1ce
+1 -1
View File
@@ -244,7 +244,7 @@ if ($action === 'delete') {
}
$temp .= "<a href=\"report.php?id=$cm->id&amp;action=reportdetail&amp;";
$temp .= "userid=".$try['userid']."&amp;try=".$try['try']." class=\"lesson-attempt-link\">";
$temp .= "userid=".$try['userid']."&amp;try=".$try['try']."\" class=\"lesson-attempt-link\">";
if ($try["grade"] !== null) { // If null then not done yet.
// This is what the link does when the user has completed the try.
$timetotake = $try["timeend"] - $try["timestart"];