Skip to content

Commit

Permalink
Replaced layout table around question by div. Doesn't display right i…
Browse files Browse the repository at this point in the history
…n firefox yet.
  • Loading branch information
gustav_delius committed Apr 7, 2006
1 parent 934eea9 commit 5f4f608
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions question/type/description/question.html
@@ -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>
Expand All @@ -11,4 +11,4 @@
<img class="qimage" src="<?php echo $image; ?>" alt="" />
<?php } ?>
</div>
</td></tr></table>
</div>
4 changes: 2 additions & 2 deletions question/type/question.html
Expand Up @@ -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) { ?>
Expand All @@ -29,4 +29,4 @@
?>
</div>
<?php } ?>
</td></tr></table>
</div>

0 comments on commit 5f4f608

Please sign in to comment.