]> git.mjollnir.org Git - moodle.git/commitdiff
Replaced layout table around question by div. Doesn't display right in firefox yet.
authorgustav_delius <gustav_delius>
Fri, 7 Apr 2006 06:08:55 +0000 (06:08 +0000)
committergustav_delius <gustav_delius>
Fri, 7 Apr 2006 06:08:55 +0000 (06:08 +0000)
question/type/description/question.html
question/type/question.html

index 3b7bb048e9da3c21d354602b61eaceae8f93392b..83edbc24f78210cc3c1949705965e9fc2a7cc309 100644 (file)
@@ -1,4 +1,4 @@
-<table id="q<?php echo $question->id; ?>" class="que <?php echo $question->qtype; ?>"><tr><td>
+<div id="q<?php echo $question->id; ?>" class="que <?php echo $question->qtype; ?>">
   <div class="info">
     <span class="edit"><?php echo $editlink; ?></span>
   </div>
@@ -11,4 +11,4 @@
       <img class="qimage" src="<?php echo $image; ?>" alt="" />
     <?php } ?>
   </div>
-</td></tr></table>
+</div>
index 0b9649f9bf0e35d455d2a491f1527b5a1687ca15..cbeca13fa825b3eded834c5179b56e5d09a16436 100644 (file)
@@ -3,7 +3,7 @@
  * print_question() method.
  */
 ?>
-<table id="q<?php echo $question->id; ?>" class="que <?php echo $question->qtype; ?>"><tr><td>
+<div id="q<?php echo $question->id; ?>" class="que <?php echo $question->qtype; ?>">
   <div class="info">
     <span class="no"><?php echo $number; ?></span>
     <?php if ($editlink) { ?>
@@ -29,4 +29,4 @@
       ?>
        </div>
   <?php } ?>
-</td></tr></table>
+</div>