MDL-10671 - Content on question import and export pages sitting on the left side.

This commit is contained in:
tjhunt 2007-09-19 17:57:52 +00:00
parent 0920afeddc
commit af8288c0e6
2 changed files with 8 additions and 8 deletions

View file

@ -155,7 +155,7 @@
} }
print_heading_with_help($txt->exportquestions, 'export', 'quiz'); print_heading_with_help($txt->exportquestions, 'export', 'quiz');
print_simple_box_start('center'); print_box_start('generalbox boxwidthnormal boxaligncenter');
?> ?>
<form enctype="multipart/form-data" method="post" action="export.php"> <form enctype="multipart/form-data" method="post" action="export.php">
@ -198,7 +198,7 @@
</form> </form>
<?php <?php
print_simple_box_end(); print_box_end();
print_footer($course); print_footer($course);
?> ?>

View file

@ -216,7 +216,7 @@
<fieldset class="invisiblefieldset" style="display: block;"> <fieldset class="invisiblefieldset" style="display: block;">
<input type="hidden" name="sesskey" value="<?php echo sesskey(); ?>" /> <input type="hidden" name="sesskey" value="<?php echo sesskey(); ?>" />
<input type="hidden" name="courseid" value="<?php echo $localcourseid ?>" /> <input type="hidden" name="courseid" value="<?php echo $localcourseid ?>" />
<?php print_simple_box_start("center"); ?> <?php print_box_start('generalbox boxwidthnormal boxaligncenter'); ?>
<table cellpadding="5"> <table cellpadding="5">
<tr> <tr>
<td align="right"><?php echo $txt->category; ?>:</td> <td align="right"><?php echo $txt->category; ?>:</td>
@ -243,9 +243,9 @@
</tr> </tr>
</table> </table>
<?php <?php
print_simple_box_end(); print_box_end();
print_simple_box_start('center'); ?> print_box_start('generalbox boxwidthnormal boxaligncenter'); ?>
<?php echo $txt->importfileupload; ?> <?php echo $txt->importfileupload; ?>
<table cellpadding="5"> <table cellpadding="5">
<tr> <tr>
@ -259,9 +259,9 @@
</tr> </tr>
</table> </table>
<?php <?php
print_simple_box_end(); print_box_end();
print_simple_box_start('center'); ?> print_box_start('generalbox boxwidthnormal boxaligncenter'); ?>
<?php echo $txt->importfilearea; ?> <?php echo $txt->importfilearea; ?>
<table cellpadding="5"> <table cellpadding="5">
<tr> <tr>
@ -277,7 +277,7 @@
</tr> </tr>
</table> </table>
<?php <?php
print_simple_box_end(); ?> print_box_end(); ?>
</fieldset> </fieldset>
</form> </form>