From 0017b962e68696e7ee19b5a09c8a409239bc5b36 Mon Sep 17 00:00:00 2001 From: michaelpenne Date: Wed, 26 Oct 2005 23:11:26 +0000 Subject: [PATCH] BUG FIX: essay response was still hard coded in. Replaced it with a get_string call --- mod/lesson/action/continue.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/lesson/action/continue.php b/mod/lesson/action/continue.php index e24ea2de399..ae7ef5f8057 100644 --- a/mod/lesson/action/continue.php +++ b/mod/lesson/action/continue.php @@ -115,7 +115,7 @@ error("Continue: No answers found"); } $correctanswer = false; - $response = "Your essay will be graded by the course instructor."; + $response = get_string('defaultessayresponse', 'lesson'); foreach ($answers as $answer) { $answerid = $answer->id; $newpageid = $answer->jumpto;