From 2da119601a3cbd78aba721cfb99c888ea79a867d Mon Sep 17 00:00:00 2001 From: pichetp Date: Mon, 2 Jun 2008 11:02:50 +0000 Subject: [PATCH] MDL-15068 novirtualquestiontype string --- lang/en_utf8/question.php | 2 +- question/type/datasetdependent/abstractqtype.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lang/en_utf8/question.php b/lang/en_utf8/question.php index f27677ac90..526ce8450e 100644 --- a/lang/en_utf8/question.php +++ b/lang/en_utf8/question.php @@ -112,7 +112,7 @@ $string['nopermissionadd'] = 'You don\'t have permission to add questions here.' $string['noprobs'] = 'No problems found in your question database.'; $string['notenoughdatatoeditaquestion'] = 'Neither a question id, nor a category id and question type, was specified.'; $string['notenoughdatatomovequestions'] = 'You need to provide the question ids of questions you want to move.'; -$string['novirtualquestion'] = 'No virtual question type for question type $a'; +$string['novirtualquestiontype'] = 'No virtual question type for question type $a'; $string['parenthesisinproperstart'] = 'Parenthesis before ** is not properly started in $a**'; $string['parenthesisinproperclose'] = 'Parenthesis before ** is not properly closed in $a**'; $string['permissionedit'] = 'Edit this question'; diff --git a/question/type/datasetdependent/abstractqtype.php b/question/type/datasetdependent/abstractqtype.php index 8c69db14e7..82806d2d09 100644 --- a/question/type/datasetdependent/abstractqtype.php +++ b/question/type/datasetdependent/abstractqtype.php @@ -639,7 +639,7 @@ class question_dataset_dependent_questiontype extends default_questiontype { } function create_virtual_qtype() { - print_error("novirtualquestion", 'question', '', $this->name()); + print_error("novirtualquestiontype", 'question', '', $this->name()); } function get_virtual_qtype() { -- 2.39.5