From: gustav_delius Date: Mon, 13 Mar 2006 00:21:35 +0000 (+0000) Subject: Truncated long action name in log, see http://moodle.org/mod/forum/discuss.php?d... X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=b9618e80bd6312d47b6bb457418d24659506350e;p=moodle.git Truncated long action name in log, see http://moodle.org/mod/forum/discuss.php?d=41446#190858 --- 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); }