From b9618e80bd6312d47b6bb457418d24659506350e Mon Sep 17 00:00:00 2001 From: gustav_delius Date: Mon, 13 Mar 2006 00:21:35 +0000 Subject: [PATCH] Truncated long action name in log, see http://moodle.org/mod/forum/discuss.php?d=41446#190858 --- mod/quiz/attempt.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/quiz/attempt.php b/mod/quiz/attempt.php index 4be29ac06c..131c7d1090 100644 --- a/mod/quiz/attempt.php +++ b/mod/quiz/attempt.php @@ -233,7 +233,7 @@ } else { // log continuation of attempt only if some time has lapsed if (($timestamp - $attempt->timemodified) > 600) { // 10 minutes have elapsed - add_to_log($course->id, 'quiz', 'continue attempt', + add_to_log($course->id, 'quiz', 'continue attemp', // this action used to be called 'continue attempt' but the database field has only 15 characters "review.php?attempt=$attempt->id", "$quiz->id", $cm->id); } -- 2.39.5