From 0c7f4e816aa5ccc4ee96a979a294e7704d5db353 Mon Sep 17 00:00:00 2001 From: moodler Date: Fri, 1 Apr 2005 12:17:21 +0000 Subject: [PATCH] Don't throw a fatal error on unknown question, try to continue. --- mod/quiz/format/gift/format.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/quiz/format/gift/format.php b/mod/quiz/format/gift/format.php index 6405fa2feb6..cd4d92b83b9 100755 --- a/mod/quiz/format/gift/format.php +++ b/mod/quiz/format/gift/format.php @@ -508,7 +508,7 @@ function writequestion( $question ) { $expout .= "// CLOZE type is not supported\n"; break; default: - error( "No handler for qtype $question->qtype for GIFT export" ); + notify( "No handler for qtype $question->qtype for GIFT export" ); } // add empty line to delimit questions $expout .= "\n";