From: thepurpleblob Date: Fri, 28 Apr 2006 09:39:13 +0000 (+0000) Subject: Removed mystery (probably diagnostic) message X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=c515fcf73e5fec41ab27c721e9aede6aa7d13073;p=moodle.git Removed mystery (probably diagnostic) message --- 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 );