From c515fcf73e5fec41ab27c721e9aede6aa7d13073 Mon Sep 17 00:00:00 2001 From: thepurpleblob Date: Fri, 28 Apr 2006 09:39:13 +0000 Subject: [PATCH] Removed mystery (probably diagnostic) message --- question/format/xml/format.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/question/format/xml/format.php b/question/format/xml/format.php index aec01a8760..67cfdcd111 100755 --- a/question/format/xml/format.php +++ b/question/format/xml/format.php @@ -249,7 +249,6 @@ class qformat_xml extends qformat_default { $qo->subquestions[] = $qtext; $qo->subanswers[] = $atext; } -//echo "
"; print_r( $qo ); die;
         return $qo;
     }
 
@@ -274,7 +273,7 @@ class qformat_xml extends qformat_default {
         foreach ($xml['quiz']['#']['question'] as $question) {
             $question_type = $question['@']['type'];
             $questiontype = get_string( 'questiontype','quiz',$question_type );
-            echo "

$questiontype

"; + // echo "

$questiontype

"; if ($question_type=='multichoice') { $qo = $this->import_multichoice( $question ); -- 2.39.5