]> git.mjollnir.org Git - moodle.git/commitdiff
Removed mystery (probably diagnostic) message
authorthepurpleblob <thepurpleblob>
Fri, 28 Apr 2006 09:39:13 +0000 (09:39 +0000)
committerthepurpleblob <thepurpleblob>
Fri, 28 Apr 2006 09:39:13 +0000 (09:39 +0000)
question/format/xml/format.php

index aec01a8760fcef6d0e2f460db24cda7c44b88452..67cfdcd111dd4a194423e2dd6cf49bc051dd57e9 100755 (executable)
@@ -249,7 +249,6 @@ class qformat_xml extends qformat_default {
             $qo->subquestions[] = $qtext;
             $qo->subanswers[] = $atext;
         }
-//echo "<pre>"; 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 "<p>$questiontype</p>"; 
+            // echo "<p>$questiontype</p>"; 
 
             if ($question_type=='multichoice') {
                 $qo = $this->import_multichoice( $question );