From: stronk7 Date: Sun, 3 Aug 2003 16:41:31 +0000 (+0000) Subject: Forget delete some debug, sorry. :-) X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=e5fc599647d3d9393fd2aecfa6c5d051dd63a2e8;p=moodle.git Forget delete some debug, sorry. :-) --- diff --git a/mod/quiz/restorelib.php b/mod/quiz/restorelib.php index 29e092b02b..f42d6d4e61 100644 --- a/mod/quiz/restorelib.php +++ b/mod/quiz/restorelib.php @@ -204,13 +204,11 @@ //If the question exists, only record its id if ($question_exists) { $newid = $question_exists->id; - echo $question->name." exists"; $creatingnewquestion = false; //Else, create a new question } else { //The structure is equal to the db, so insert the quiz_questions $newid = insert_record ("quiz_questions",$question); - echo $question->name." not exists"; $creatingnewquestion = true; }